From: Robert Pluim Date: Tue, 20 Nov 2018 09:48:16 +0000 (+0100) Subject: Remove space from end of coding cookie X-Git-Tag: emacs-27.0.90~4134 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=5007c23a6d1f05d3270e7247b263f8bc73a211fd;p=emacs.git Remove space from end of coding cookie * lisp/bookmark.el (bookmark-insert-file-format-version-stamp): Remove unnecessary space from end of coding cookie. --- 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"