diff options
| author | Karl Fogel | 2012-09-30 22:32:06 -0500 |
|---|---|---|
| committer | Karl Fogel | 2012-09-30 22:32:06 -0500 |
| commit | 16ce6ccd816c3d8c9d3a89455d321b352227df0f (patch) | |
| tree | 6d242bfac0ac5911c3cc91d4d388e7ea3db8a1a0 | |
| parent | 0c8c4f210574ef2e3b7289ac0a8211ae41cdabdb (diff) | |
| download | emacs-16ce6ccd816c3d8c9d3a89455d321b352227df0f.tar.gz emacs-16ce6ccd816c3d8c9d3a89455d321b352227df0f.zip | |
* lisp/bookmark.el (bookmark-version-control): Give tags in the
:type choices (Bug#12309), and improve doc string.
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/bookmark.el | 12 |
2 files changed, 12 insertions, 5 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index e683650856c..7ac0ec72990 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2012-10-01 Karl Fogel <kfogel@red-bean.com> | ||
| 2 | |||
| 3 | * bookmark.el (bookmark-version-control): Give tags in the | ||
| 4 | :type choices (Bug#12309), and improve doc string. | ||
| 5 | |||
| 1 | 2012-10-01 Paul Eggert <eggert@cs.ucla.edu> | 6 | 2012-10-01 Paul Eggert <eggert@cs.ucla.edu> |
| 2 | 7 | ||
| 3 | Revert the FOLLOW-SYMLINKS change for file-attributes. | 8 | Revert the FOLLOW-SYMLINKS change for file-attributes. |
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 | |||
| 99 | 99 | ||
| 100 | (defcustom bookmark-version-control 'nospecial | 100 | (defcustom bookmark-version-control 'nospecial |
| 101 | "Whether or not to make numbered backups of the bookmark file. | 101 | "Whether or not to make numbered backups of the bookmark file. |
| 102 | It can have four values: t, nil, `never', and `nospecial'. | 102 | It can have four values: t, nil, `never', or `nospecial'. |
| 103 | The first three have the same meaning that they do for the | 103 | The first three have the same meaning that they do for the |
| 104 | variable `version-control', and the final value `nospecial' means just | 104 | variable `version-control'; the value `nospecial' (the default) means |
| 105 | use the value of `version-control'." | 105 | just use the value of `version-control'." |
| 106 | :type '(choice (const nil) (const never) (const nospecial) | 106 | :type '(choice (const :tag "If existing" nil) |
| 107 | (other t)) | 107 | (const :tag "Never" never) |
| 108 | (const :tag "Use the value of `version-control'" nospecial) | ||
| 109 | (const :tag "Always" t)) | ||
| 108 | :group 'bookmark) | 110 | :group 'bookmark) |
| 109 | 111 | ||
| 110 | 112 | ||