diff options
author | Gerd Moellmann <gerd@gnu.org> | 2001-02-06 12:04:19 +0000 |
---|---|---|
committer | Gerd Moellmann <gerd@gnu.org> | 2001-02-06 12:04:19 +0000 |
commit | c4ca64dbae24a2206cbc35273258ed3a9e165a63 (patch) | |
tree | 07af57361e7fb5f68dbc8ccc93d51115c883ed45 /lisp/dabbrev.el | |
parent | fb735c08aa1802bd7bea352ed060647580fb6638 (diff) | |
download | emacs-c4ca64dbae24a2206cbc35273258ed3a9e165a63.tar.gz |
(dabbrev-ignored-buffer-regexps): Renamed from
dabbrev-ignored-regexps.
Diffstat (limited to 'lisp/dabbrev.el')
-rw-r--r-- | lisp/dabbrev.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/dabbrev.el b/lisp/dabbrev.el index cfcc1fa365c..a5a37c3d20f 100644 --- a/lisp/dabbrev.el +++ b/lisp/dabbrev.el @@ -201,12 +201,12 @@ or matched by `dabbrev-ignored-regexps'." (defcustom dabbrev-ignored-buffer-names '("*Messages*" "*Buffer List*") "*List of buffer names that dabbrev should not check. -See also `dabbrev-ignored-regexps'." +See also `dabbrev-ignored-buffer-regexps'." :type '(repeat (string :tag "Buffer name")) :group 'dabbrev :version "20.3") -(defcustom dabbrev-ignored-regexps nil +(defcustom dabbrev-ignored-buffer-regexps nil "*List of regexps matching names of buffers that dabbrev should not check. See also `dabbrev-ignored-buffer-names'." :type '(repeat regexp) @@ -764,7 +764,7 @@ See also `dabbrev-abbrev-char-regexp' and \\[dabbrev-completion]." (and (not (member bn dabbrev-ignored-buffer-names)) (not (memq buffer dabbrev--friend-buffer-list)) (not - (let ((tail dabbrev-ignored-regexps) + (let ((tail dabbrev-ignored-buffer-regexps) (match nil)) (while (and tail (not match)) (setq match (string-match (car tail) bn) |