From 5007c23a6d1f05d3270e7247b263f8bc73a211fd Mon Sep 17 00:00:00 2001 From: Robert Pluim Date: Tue, 20 Nov 2018 10:48:16 +0100 Subject: [PATCH] Remove space from end of coding cookie * lisp/bookmark.el (bookmark-insert-file-format-version-stamp): Remove unnecessary space from end of coding cookie. --- lisp/bookmark.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/bookmark.el b/lisp/bookmark.el index 15a841e208c..1f06d672e98 100644 --- a/lisp/bookmark.el +++ b/lisp/bookmark.el @@ -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" -- 2.39.5