]> git.eshelyaron.com Git - emacs.git/commitdiff
(ido-save-history): Use emacs-mule coding system instead of
authorJuanma Barranquero <lekktu@gmail.com>
Tue, 4 Dec 2007 15:43:26 +0000 (15:43 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Tue, 4 Dec 2007 15:43:26 +0000 (15:43 +0000)
utf-8 to save filenames (it's safer in Emacs 22).  Set the
`coding' local variable on the first line of the file.

lisp/ChangeLog
lisp/ido.el

index 1535a87904a1f095ada0079c30fc43c7d5a4ae40..0a96ba61341ca7fb4621f0dc2bb0417c6cba16c7 100644 (file)
@@ -1,3 +1,9 @@
+2007-12-04  Juanma Barranquero  <lekktu@gmail.com>
+
+       * ido.el (ido-save-history): Use emacs-mule coding system
+       instead of utf-8 to save filenames (it's safer in Emacs 22).
+       Set the `coding' local variable on the first line of the file.
+
 2007-12-04  Karl Fogel  <kfogel@red-bean.com>
 
        * saveplace.el (save-place-alist-to-file): Save with 'emacs-mule'
index 9b1f6a634aac0df9850369f1214128dba2821998..41149038b0e35028c2c8e48835d4c0735c6b8b19 100644 (file)
@@ -1309,7 +1309,8 @@ Value is an integer which is number of chars to right of prompt.")
       (unwind-protect
          (with-current-buffer buf
            (erase-buffer)
-           (setq buffer-file-coding-system 'utf-8)
+           (insert ";;; -*- coding: emacs-mule -*-\n")
+           (setq buffer-file-coding-system 'emacs-mule)
            (ido-pp 'ido-last-directory-list)
            (ido-pp 'ido-work-directory-list)
            (ido-pp 'ido-work-file-list)
@@ -1317,7 +1318,7 @@ Value is an integer which is number of chars to right of prompt.")
            (if (listp ido-unc-hosts-cache)
                (ido-pp 'ido-unc-hosts-cache)
              (insert "\n;; ----- ido-unc-hosts-cache -----\nt\n"))
-           (insert "\n;; Local Variables:\n;; coding: utf-8\n;; End:\n")
+           (insert "\n")
            (write-file ido-save-directory-list-file nil))
        (kill-buffer buf)))))