aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGerd Moellmann2001-02-06 12:04:19 +0000
committerGerd Moellmann2001-02-06 12:04:19 +0000
commitc4ca64dbae24a2206cbc35273258ed3a9e165a63 (patch)
tree07af57361e7fb5f68dbc8ccc93d51115c883ed45
parentfb735c08aa1802bd7bea352ed060647580fb6638 (diff)
downloademacs-c4ca64dbae24a2206cbc35273258ed3a9e165a63.tar.gz
emacs-c4ca64dbae24a2206cbc35273258ed3a9e165a63.zip
(dabbrev-ignored-buffer-regexps): Renamed from
dabbrev-ignored-regexps.
-rw-r--r--lisp/dabbrev.el6
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'."
201 201
202(defcustom dabbrev-ignored-buffer-names '("*Messages*" "*Buffer List*") 202(defcustom dabbrev-ignored-buffer-names '("*Messages*" "*Buffer List*")
203 "*List of buffer names that dabbrev should not check. 203 "*List of buffer names that dabbrev should not check.
204See also `dabbrev-ignored-regexps'." 204See also `dabbrev-ignored-buffer-regexps'."
205 :type '(repeat (string :tag "Buffer name")) 205 :type '(repeat (string :tag "Buffer name"))
206 :group 'dabbrev 206 :group 'dabbrev
207 :version "20.3") 207 :version "20.3")
208 208
209(defcustom dabbrev-ignored-regexps nil 209(defcustom dabbrev-ignored-buffer-regexps nil
210 "*List of regexps matching names of buffers that dabbrev should not check. 210 "*List of regexps matching names of buffers that dabbrev should not check.
211See also `dabbrev-ignored-buffer-names'." 211See also `dabbrev-ignored-buffer-names'."
212 :type '(repeat regexp) 212 :type '(repeat regexp)
@@ -764,7 +764,7 @@ See also `dabbrev-abbrev-char-regexp' and \\[dabbrev-completion]."
764 (and (not (member bn dabbrev-ignored-buffer-names)) 764 (and (not (member bn dabbrev-ignored-buffer-names))
765 (not (memq buffer dabbrev--friend-buffer-list)) 765 (not (memq buffer dabbrev--friend-buffer-list))
766 (not 766 (not
767 (let ((tail dabbrev-ignored-regexps) 767 (let ((tail dabbrev-ignored-buffer-regexps)
768 (match nil)) 768 (match nil))
769 (while (and tail (not match)) 769 (while (and tail (not match))
770 (setq match (string-match (car tail) bn) 770 (setq match (string-match (car tail) bn)