1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-29 07:58:28 +00:00

Remove space from end of coding cookie

* lisp/bookmark.el (bookmark-insert-file-format-version-stamp):
Remove unnecessary space from end of coding cookie.
This commit is contained in:
Robert Pluim 2018-11-20 10:48:16 +01:00
parent 008bc1cbc8
commit 5007c23a6d

View File

@ -735,7 +735,7 @@ CODING is the symbol of the coding-system in which the file is encoded."
(if (memq (coding-system-base coding) '(undecided prefer-utf-8))
(setq coding 'utf-8-emacs))
(insert
(format ";;;; Emacs Bookmark Format Version %d ;;;; -*- coding: %S -*- \n"
(format ";;;; Emacs Bookmark Format Version %d ;;;; -*- coding: %S -*-\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"