Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
f5952338
Commit
f5952338
authored
Feb 12, 2010
by
Juri Linkov
Browse files
* arc-mode.el (archive-unique-fname): Make directories for nested
archives. (Bug#5540)
parent
918fe50f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
0 deletions
+10
-0
lisp/ChangeLog
lisp/ChangeLog
+5
-0
lisp/arc-mode.el
lisp/arc-mode.el
+5
-0
No files found.
lisp/ChangeLog
View file @
f5952338
2010-02-12 Juri Linkov <juri@jurta.org>
* arc-mode.el (archive-unique-fname): Make directories for nested
archives. (Bug#5540)
2010-02-12 Juri Linkov <juri@jurta.org>
* ffap.el (dired-at-point): Fix docstring. (Bug#5565)
...
...
lisp/arc-mode.el
View file @
f5952338
...
...
@@ -834,6 +834,11 @@ using `make-temp-file', and the generated name is returned."
;; reconstructed in the temporary directory.
(make-directory (file-name-directory tmpfile) t)
(make-temp-file tmpfile))
;; Maked sure all the leading directories in `fullname' exist
;; under archive-tmpdir. This is necessary for nested archives
;; (`archive-extract' sets `archive-remote' to t in case
;; an archive occurs inside another archive).
(make-directory (file-name-directory fullname) t)
fullname)))
(defun archive-maybe-copy (archive)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment