]> git.eshelyaron.com Git - emacs.git/commitdiff
Document bookmark annotations in Emacs Manual (bug#36417)
authorStefan Kangas <stefankangas@gmail.com>
Fri, 28 Jun 2019 11:40:37 +0000 (13:40 +0200)
committerEli Zaretskii <eliz@gnu.org>
Fri, 28 Jun 2019 18:35:21 +0000 (21:35 +0300)
* doc/emacs/regs.texi (Bookmarks): Document annotations.
* lisp/bookmark.el (bookmark-use-annotations): Clarify docstring.

doc/emacs/regs.texi
lisp/bookmark.el

index 37026946477f94c3f9f2f0ab9d2448a3454b0b2c..68a8245b34d62690e08d110c28b9ddc5feefdb76 100644 (file)
@@ -359,6 +359,13 @@ saves bookmarks if you explicitly use @kbd{M-x bookmark-save}.
   The variable @code{bookmark-default-file} specifies the file in
 which to save bookmarks by default.
 
+@vindex bookmark-use-annotations
+@cindex bookmark annotations
+  If you set the variable @code{bookmark-use-annotations} to @code{t},
+setting a bookmark will query for an annotation.  If a bookmark has an
+annotation, it is automatically shown in a separate window when you
+jump to the bookmark.
+
 @vindex bookmark-search-size
   Bookmark position values are saved with surrounding context, so that
 @code{bookmark-jump} can find the proper position even if the file is
index 9a3a2a3bdf85a7f2b9259b8abae8c9ea429deca9..bbef0a927dc5fb05de4dd525c09dc53b65734efe 100644 (file)
@@ -36,9 +36,6 @@
 
 ;;; Misc comments:
 ;;
-;; If variable bookmark-use-annotations is non-nil, an annotation is
-;; queried for when setting a bookmark.
-;;
 ;; The bookmark list is sorted lexically by default, but you can turn
 ;; this off by setting bookmark-sort-flag to nil.  If it is nil, then
 ;; the list will be presented in the order it is recorded
@@ -52,7 +49,7 @@
 
 
 (defcustom bookmark-use-annotations nil
-  "If non-nil, saving a bookmark queries for an annotation in a buffer."
+  "If non-nil, setting a bookmark queries for an annotation in a buffer."
   :type 'boolean
   :group 'bookmark)