aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim F. Storm2006-06-07 22:45:27 +0000
committerKim F. Storm2006-06-07 22:45:27 +0000
commitf1d0c70d707114d855efcd001eac49d7d115dde0 (patch)
tree945a94d63954e34efd2d708fafa26dca42602cca
parent532a001d7518b593e95a41aa8b2735b6455fe34d (diff)
downloademacs-f1d0c70d707114d855efcd001eac49d7d115dde0.tar.gz
emacs-f1d0c70d707114d855efcd001eac49d7d115dde0.zip
(ido-file-internal): Pass full file name to write-file.
-rw-r--r--lisp/ido.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/ido.el b/lisp/ido.el
index efea9a9fbb9..08d5c91d203 100644
--- a/lisp/ido.el
+++ b/lisp/ido.el
@@ -2339,7 +2339,7 @@ If INITIAL is non-nil, it specifies the initial input string."
2339 (setq default-directory ido-current-directory) 2339 (setq default-directory ido-current-directory)
2340 (ido-record-command 'write-file (concat ido-current-directory filename)) 2340 (ido-record-command 'write-file (concat ido-current-directory filename))
2341 (ido-record-work-directory) 2341 (ido-record-work-directory)
2342 (write-file filename)) 2342 (write-file (concat ido-current-directory filename)))
2343 2343
2344 ((eq method 'read-only) 2344 ((eq method 'read-only)
2345 (ido-record-work-file filename) 2345 (ido-record-work-file filename)