]> git.eshelyaron.com Git - emacs.git/commitdiff
Add semicolon to prop-line with lisp-data mode (bug#40573). scratch/add-lisp-data-mode
authorJuri Linkov <juri@linkov.net>
Sun, 19 Apr 2020 23:13:50 +0000 (02:13 +0300)
committerJuri Linkov <juri@linkov.net>
Sun, 19 Apr 2020 23:13:50 +0000 (02:13 +0300)
* lisp/bookmark.el (bookmark-insert-file-format-version-stamp):
* lisp/saveplace.el (save-place-alist-to-file):
Add semicolon to separate 'coding:' and 'mode:'.

lisp/bookmark.el
lisp/saveplace.el

index f2384973e9ce5026d8592a5991bc41dda5b4422f..0fa77ed32246b796e14fc5f2999f0bddbdd39f88 100644 (file)
@@ -736,7 +736,7 @@ CODING is the symbol of the coding-system in which the file is encoded."
   (insert
    (format
     ";;;; Emacs Bookmark Format Version %d\
-;;;; -*- coding: %S mode: lisp-data -*-\n"
+;;;; -*- coding: %S; mode: lisp-data -*-\n"
     bookmark-file-format-version (coding-system-base coding)))
   (insert ";;; This format is meant to be slightly human-readable;\n"
           ";;; nevertheless, you probably don't want to edit it.\n"
index f78639db246d9e25bc022b21e2b2dfc9fd44b100..73cc8fa6fd70d967ed608ef152e8d4d90c7b7ed5 100644 (file)
@@ -248,7 +248,7 @@ may have changed) back to `save-place-alist'."
       (delete-region (point-min) (point-max))
       (when save-place-forget-unreadable-files
        (save-place-forget-unreadable-files))
-      (insert (format ";;; -*- coding: %s mode: lisp-data -*-\n"
+      (insert (format ";;; -*- coding: %s; mode: lisp-data -*-\n"
                       (symbol-name coding-system-for-write)))
       (let ((print-length nil)
             (print-level nil))