diff options
| author | Juri Linkov | 2020-04-20 02:13:50 +0300 |
|---|---|---|
| committer | Juri Linkov | 2020-04-20 02:13:50 +0300 |
| commit | 7686c7880399718865c83747c63fce3e58b1da1b (patch) | |
| tree | e4c39743ec0fed06cec8344728bda3e8fd9d4242 /lisp/saveplace.el | |
| parent | e95703c2db48d5f5ce465e2cf2b9a3165f8ecb2b (diff) | |
| download | emacs-scratch/add-lisp-data-mode.tar.gz emacs-scratch/add-lisp-data-mode.zip | |
Add semicolon to prop-line with lisp-data mode (bug#40573).scratch/add-lisp-data-mode
* lisp/bookmark.el (bookmark-insert-file-format-version-stamp):
* lisp/saveplace.el (save-place-alist-to-file):
Add semicolon to separate 'coding:' and 'mode:'.
Diffstat (limited to 'lisp/saveplace.el')
| -rw-r--r-- | lisp/saveplace.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/saveplace.el b/lisp/saveplace.el index f78639db246..73cc8fa6fd7 100644 --- a/lisp/saveplace.el +++ b/lisp/saveplace.el | |||
| @@ -248,7 +248,7 @@ may have changed) back to `save-place-alist'." | |||
| 248 | (delete-region (point-min) (point-max)) | 248 | (delete-region (point-min) (point-max)) |
| 249 | (when save-place-forget-unreadable-files | 249 | (when save-place-forget-unreadable-files |
| 250 | (save-place-forget-unreadable-files)) | 250 | (save-place-forget-unreadable-files)) |
| 251 | (insert (format ";;; -*- coding: %s mode: lisp-data -*-\n" | 251 | (insert (format ";;; -*- coding: %s; mode: lisp-data -*-\n" |
| 252 | (symbol-name coding-system-for-write))) | 252 | (symbol-name coding-system-for-write))) |
| 253 | (let ((print-length nil) | 253 | (let ((print-length nil) |
| 254 | (print-level nil)) | 254 | (print-level nil)) |