Function: bookmark-insert-file-format-version-stamp
bookmark-insert-file-format-version-stamp is a byte-compiled function
defined in bookmark.el.gz.
Signature
(bookmark-insert-file-format-version-stamp CODING)
Documentation
Insert text indicating current version of bookmark file format.
CODING is the symbol of the coding-system in which the file is encoded.
Source Code
;; Defined in /usr/src/emacs/lisp/bookmark.el.gz
(defun bookmark-insert-file-format-version-stamp (coding)
"Insert text indicating current version of bookmark file format.
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; 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"
";;; "
bookmark-end-of-version-stamp-marker))