diff options
| author | Robert Pluim | 2018-11-20 10:48:16 +0100 |
|---|---|---|
| committer | Robert Pluim | 2018-11-20 10:59:17 +0100 |
| commit | 5007c23a6d1f05d3270e7247b263f8bc73a211fd (patch) | |
| tree | e29d48cf550e2b7a779b535e5f1a28795d00ed1b | |
| parent | 008bc1cbc85ac8c95fd0cbd1b41a98f877dae838 (diff) | |
| download | emacs-5007c23a6d1f05d3270e7247b263f8bc73a211fd.tar.gz emacs-5007c23a6d1f05d3270e7247b263f8bc73a211fd.zip | |
Remove space from end of coding cookie
* lisp/bookmark.el (bookmark-insert-file-format-version-stamp):
Remove unnecessary space from end of coding cookie.
| -rw-r--r-- | lisp/bookmark.el | 2 |
1 files changed, 1 insertions, 1 deletions
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." | |||
| 735 | (if (memq (coding-system-base coding) '(undecided prefer-utf-8)) | 735 | (if (memq (coding-system-base coding) '(undecided prefer-utf-8)) |
| 736 | (setq coding 'utf-8-emacs)) | 736 | (setq coding 'utf-8-emacs)) |
| 737 | (insert | 737 | (insert |
| 738 | (format ";;;; Emacs Bookmark Format Version %d ;;;; -*- coding: %S -*- \n" | 738 | (format ";;;; Emacs Bookmark Format Version %d ;;;; -*- coding: %S -*-\n" |
| 739 | bookmark-file-format-version (coding-system-base coding))) | 739 | bookmark-file-format-version (coding-system-base coding))) |
| 740 | (insert ";;; This format is meant to be slightly human-readable;\n" | 740 | (insert ";;; This format is meant to be slightly human-readable;\n" |
| 741 | ";;; nevertheless, you probably don't want to edit it.\n" | 741 | ";;; nevertheless, you probably don't want to edit it.\n" |