summaryrefslogtreecommitdiff
path: root/lisp/bookmark.el
diff options
context:
space:
mode:
authorKarl Fogel <kfogel@red-bean.com>2012-09-30 22:32:06 -0500
committerKarl Fogel <kfogel@red-bean.com>2012-09-30 22:32:06 -0500
commit16ce6ccd816c3d8c9d3a89455d321b352227df0f (patch)
tree6d242bfac0ac5911c3cc91d4d388e7ea3db8a1a0 /lisp/bookmark.el
parent0c8c4f210574ef2e3b7289ac0a8211ae41cdabdb (diff)
downloademacs-16ce6ccd816c3d8c9d3a89455d321b352227df0f.tar.gz
* lisp/bookmark.el (bookmark-version-control): Give tags in the
:type choices (Bug#12309), and improve doc string.
Diffstat (limited to 'lisp/bookmark.el')
-rw-r--r--lisp/bookmark.el12
1 files changed, 7 insertions, 5 deletions
diff --git a/lisp/bookmark.el b/lisp/bookmark.el
index 26ba1dec00f..7470f7bd62c 100644
--- a/lisp/bookmark.el
+++ b/lisp/bookmark.el
@@ -99,12 +99,14 @@ To specify the file in which to save them, modify the variable
(defcustom bookmark-version-control 'nospecial
"Whether or not to make numbered backups of the bookmark file.
-It can have four values: t, nil, `never', and `nospecial'.
+It can have four values: t, nil, `never', or `nospecial'.
The first three have the same meaning that they do for the
-variable `version-control', and the final value `nospecial' means just
-use the value of `version-control'."
- :type '(choice (const nil) (const never) (const nospecial)
- (other t))
+variable `version-control'; the value `nospecial' (the default) means
+just use the value of `version-control'."
+ :type '(choice (const :tag "If existing" nil)
+ (const :tag "Never" never)
+ (const :tag "Use the value of `version-control'" nospecial)
+ (const :tag "Always" t))
:group 'bookmark)