diff options
author | Andreas Schwab <schwab@suse.de> | 1998-06-24 08:48:57 +0000 |
---|---|---|
committer | Andreas Schwab <schwab@suse.de> | 1998-06-24 08:48:57 +0000 |
commit | 31fa1bd1eb409260cc12a0355739b04e761eeab4 (patch) | |
tree | fef6611682346f22fae57a50142d069c04b1e797 /lisp/bookmark.el | |
parent | 5c213454767a305026f9545a4b60cf774962e3cd (diff) | |
download | emacs-31fa1bd1eb409260cc12a0355739b04e761eeab4.tar.gz |
(bookmark-save-flag, bookmark-version-control): Use
`other' widget type.
Diffstat (limited to 'lisp/bookmark.el')
-rw-r--r-- | lisp/bookmark.el | 5 |
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.\) To specify the file in which to save them, modify the variable `bookmark-default-file', which is `~/.emacs.bmk' by default." - :type '(choice (const nil) (const t) integer) + :type '(choice (const nil) integer (other t)) :group 'bookmark) @@ -149,7 +149,8 @@ It can have four values: t, nil, `never', and `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 t) (const nil) (const never) (const nospecial)) + :type '(choice (const nil) (const never) (const nospecial) + (other t)) :group 'bookmark) |