aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Schwab1998-06-24 08:48:57 +0000
committerAndreas Schwab1998-06-24 08:48:57 +0000
commit31fa1bd1eb409260cc12a0355739b04e761eeab4 (patch)
treefef6611682346f22fae57a50142d069c04b1e797
parent5c213454767a305026f9545a4b60cf774962e3cd (diff)
downloademacs-31fa1bd1eb409260cc12a0355739b04e761eeab4.tar.gz
emacs-31fa1bd1eb409260cc12a0355739b04e761eeab4.zip
(bookmark-save-flag, bookmark-version-control): Use
`other' widget type.
-rw-r--r--lisp/bookmark.el5
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/bookmark.el b/lisp/bookmark.el
index 69ca3e1f865..65f117a0411 100644
--- a/lisp/bookmark.el
+++ b/lisp/bookmark.el
@@ -121,7 +121,7 @@ behavior.\)
121 121
122To specify the file in which to save them, modify the variable 122To specify the file in which to save them, modify the variable
123`bookmark-default-file', which is `~/.emacs.bmk' by default." 123`bookmark-default-file', which is `~/.emacs.bmk' by default."
124 :type '(choice (const nil) (const t) integer) 124 :type '(choice (const nil) integer (other t))
125 :group 'bookmark) 125 :group 'bookmark)
126 126
127 127
@@ -149,7 +149,8 @@ It can have four values: t, nil, `never', and `nospecial'.
149The first three have the same meaning that they do for the 149The first three have the same meaning that they do for the
150variable `version-control', and the final value `nospecial' means just 150variable `version-control', and the final value `nospecial' means just
151use the value of `version-control'." 151use the value of `version-control'."
152 :type '(choice (const t) (const nil) (const never) (const nospecial)) 152 :type '(choice (const nil) (const never) (const nospecial)
153 (other t))
153 :group 'bookmark) 154 :group 'bookmark)
154 155
155 156