Function: bookmark-default-annotation-text
bookmark-default-annotation-text is a byte-compiled function defined
in bookmark.el.gz.
Signature
(bookmark-default-annotation-text BOOKMARK-NAME)
Documentation
Return default annotation text for BOOKMARK-NAME.
The default annotation text is simply some text explaining how to use annotations.
Source Code
;; Defined in /usr/src/emacs/lisp/bookmark.el.gz
(defun bookmark-default-annotation-text (bookmark-name)
"Return default annotation text for BOOKMARK-NAME.
The default annotation text is simply some text explaining how to use
annotations."
(concat (format-message
"# Type the annotation for bookmark `%s' here.\n"
bookmark-name)
(format-message
"# All lines which start with a `#' will be deleted.\n")
"# Type C-c C-c when done.\n#\n"
"# Author: " (user-full-name) " <" (user-login-name) "@"
(system-name) ">\n"
"# Date: " (current-time-string) "\n"))