when writing, and set it in the first-line file variables.
Based on a patch by David Reitter <dreitter{_AT_}inf.ed.ac.uk> and a
suggestion by Juanma Barranquero.
+2007-12-02 Karl Fogel <kfogel@red-bean.com>
+
+ * saveplace.el (save-place-alist-to-file): Use `utf-8' coding
+ system when writing, and set it in the first-line file variables.
+ Based on a patch by David Reitter <dreitter{_AT_}inf.ed.ac.uk>
+ and a suggestion by Juanma Barranquero.
+
2007-12-02 Glenn Morris <rgm@gnu.org>
* emulation/viper-cmd.el (top-level): Don't require advice.
(delete-region (point-min) (point-max))
(when save-place-forget-unreadable-files
(save-place-forget-unreadable-files))
+ (insert ";;; -*- coding: utf-8 -*-\n")
(let ((print-length nil)
(print-level nil))
(print save-place-alist (current-buffer)))
t))))
(condition-case nil
;; Don't use write-file; we don't want this buffer to visit it.
- (write-region (point-min) (point-max) file)
+ (let ((coding-system-for-write 'utf-8))
+ (write-region (point-min) (point-max) file))
(file-error (message "Can't write %s" file)))
(kill-buffer (current-buffer))
(unless save-place-quiet