aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ido.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/ido.el b/lisp/ido.el
index 3801934fc3e..2a327439078 100644
--- a/lisp/ido.el
+++ b/lisp/ido.el
@@ -1309,6 +1309,7 @@ Value is an integer which is number of chars to right of prompt.")
1309 (unwind-protect 1309 (unwind-protect
1310 (with-current-buffer buf 1310 (with-current-buffer buf
1311 (erase-buffer) 1311 (erase-buffer)
1312 (insert ";;; -*- coding: utf-8 -*-\n")
1312 (setq buffer-file-coding-system 'utf-8) 1313 (setq buffer-file-coding-system 'utf-8)
1313 (ido-pp 'ido-last-directory-list) 1314 (ido-pp 'ido-last-directory-list)
1314 (ido-pp 'ido-work-directory-list) 1315 (ido-pp 'ido-work-directory-list)
@@ -1317,7 +1318,7 @@ Value is an integer which is number of chars to right of prompt.")
1317 (if (listp ido-unc-hosts-cache) 1318 (if (listp ido-unc-hosts-cache)
1318 (ido-pp 'ido-unc-hosts-cache) 1319 (ido-pp 'ido-unc-hosts-cache)
1319 (insert "\n;; ----- ido-unc-hosts-cache -----\nt\n")) 1320 (insert "\n;; ----- ido-unc-hosts-cache -----\nt\n"))
1320 (insert "\n;; Local Variables:\n;; coding: utf-8\n;; End:\n") 1321 (insert "\n")
1321 (write-file ido-save-directory-list-file nil)) 1322 (write-file ido-save-directory-list-file nil))
1322 (kill-buffer buf))))) 1323 (kill-buffer buf)))))
1323 1324