1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-21 06:55:39 +00:00

(dabbrev-ignored-buffer-regexps): Renamed from

dabbrev-ignored-regexps.
This commit is contained in:
Gerd Moellmann 2001-02-06 12:04:19 +00:00
parent fb735c08aa
commit c4ca64dbae

View File

@ -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)