diff lisp/dabbrev.el @ 35921:d74e2e8f6c1f

(dabbrev-ignored-buffer-regexps): Renamed from dabbrev-ignored-regexps.
author Gerd Moellmann <gerd@gnu.org>
date Tue, 06 Feb 2001 12:04:19 +0000
parents 4eb554667665
children ed8e6a4af6ef
line wrap: on
line diff
--- a/lisp/dabbrev.el	Tue Feb 06 11:06:02 2001 +0000
+++ b/lisp/dabbrev.el	Tue Feb 06 12:04:19 2001 +0000
@@ -201,12 +201,12 @@
 
 (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 @@
 			   (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)