aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChong Yidong2011-01-29 17:10:51 -0500
committerChong Yidong2011-01-29 17:10:51 -0500
commit82d84d3fc97ed20079b42bb2b2c319437a299ad9 (patch)
tree33494a7d2e23a9cde775b20d2382897009682f75
parent7f9c5df9660fc124e5d1399eaf4b3f5da94c71aa (diff)
downloademacs-82d84d3fc97ed20079b42bb2b2c319437a299ad9.tar.gz
emacs-82d84d3fc97ed20079b42bb2b2c319437a299ad9.zip
Fix bug in copy-directory copying into an existing directory.
http://lists.gnu.org/archive/html/emacs-devel/2011-01/msg01007.html * files.el (copy-directory): If destination is an existing directory, copy into a subdirectory there.
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/files.el17
2 files changed, 21 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index ee4eae0e41b..286f1eeae65 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12011-01-29 Chong Yidong <cyd@stupidchicken.com>
2
3 * files.el (copy-directory): If destination is an existing
4 directory, copy into a subdirectory there.
5
12011-01-29 Andreas Schwab <schwab@linux-m68k.org> 62011-01-29 Andreas Schwab <schwab@linux-m68k.org>
2 7
3 * emacs-lisp/shadow.el (load-path-shadows-find): Ignore leim-list 8 * emacs-lisp/shadow.el (load-path-shadows-find): Ignore leim-list
diff --git a/lisp/files.el b/lisp/files.el
index ee77975e38b..46597426191 100644
--- a/lisp/files.el
+++ b/lisp/files.el
@@ -4756,7 +4756,22 @@ this happens by default."
4756 ;; Compute target name. 4756 ;; Compute target name.
4757 (setq directory (directory-file-name (expand-file-name directory)) 4757 (setq directory (directory-file-name (expand-file-name directory))
4758 newname (directory-file-name (expand-file-name newname))) 4758 newname (directory-file-name (expand-file-name newname)))
4759 (if (not (file-directory-p newname)) (make-directory newname parents)) 4759
4760 (if (not (file-directory-p newname))
4761 ;; If NEWNAME is not an existing directory, create it; that
4762 ;; is where we will copy the files of DIRECTORY.
4763 (make-directory newname parents)
4764 ;; If NEWNAME is an existing directory, we will copy into
4765 ;; NEWNAME/[DIRECTORY-BASENAME].
4766 (setq newname (expand-file-name
4767 (file-name-nondirectory
4768 (directory-file-name directory))
4769 newname))
4770 (if (and (file-exists-p newname)
4771 (not (file-directory-p newname)))
4772 (error "Cannot overwrite non-directory %s with a directory"
4773 newname))
4774 (make-directory newname t))
4760 4775
4761 ;; Copy recursively. 4776 ;; Copy recursively.
4762 (mapc 4777 (mapc