diff options
author | Richard M. Stallman <rms@gnu.org> | 1998-07-24 20:13:08 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1998-07-24 20:13:08 +0000 |
commit | 3c7c4868bdaf054677a72537c6f9b108f1c17e20 (patch) | |
tree | 7cb35841d70fb157a1cc36544fe6b6c59cba3c55 /lisp/uniquify.el | |
parent | d5fe94cca85dc89ae35ebe11e3e6b669ea8ea325 (diff) | |
download | emacs-3c7c4868bdaf054677a72537c6f9b108f1c17e20.tar.gz |
(uniquify-ignore-buffers-re): Fix custom type.
Diffstat (limited to 'lisp/uniquify.el')
-rw-r--r-- | lisp/uniquify.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/uniquify.el b/lisp/uniquify.el index 5e4749389e5..3099ff0a1f3 100644 --- a/lisp/uniquify.el +++ b/lisp/uniquify.el @@ -127,11 +127,11 @@ other buffer names are changed." :group 'uniquify) (defcustom uniquify-ignore-buffers-re nil - "*Regular expression matching buffer names that should not be uniqified. + "*Regular expression matching buffer names that should not be uniquified. For instance, set this to \"^draft-[0-9]+$\" to avoid having uniquify rename draft buffers even if `uniquify-after-kill-buffer-p' is non-nil and the visited file name isn't the same as that of the buffer." - :type 'boolean + :type '(choice (const :tag "Uniquify all buffers" nil) regexp) :group 'uniquify) (defcustom uniquify-min-dir-content 0 |