comparison lisp/dabbrev.el @ 22608:e1e08f5e0662

(dabbrev-ignored-buffer-names): Fix typo. Add *Buffer List*.
author Richard M. Stallman <rms@gnu.org>
date Thu, 25 Jun 1998 01:16:56 +0000
parents b1cba467a906
children 4beab023a902
comparison
equal deleted inserted replaced
22607:3c91c17a1a0f 22608:e1e08f5e0662
195 Then, if `dabbrev-check-all-buffers' is non-nil, dabbrev searches 195 Then, if `dabbrev-check-all-buffers' is non-nil, dabbrev searches
196 all the other buffers, except those named in `dabbrev-ignored-buffer-names'." 196 all the other buffers, except those named in `dabbrev-ignored-buffer-names'."
197 :type 'boolean 197 :type 'boolean
198 :group 'dabbrev) 198 :group 'dabbrev)
199 199
200 (defcustom dabbrev-ignored-buffer-names '("*Messages") 200 (defcustom dabbrev-ignored-buffer-names '("*Messages*" "*Buffer List*")
201 "*List of buffer names that dabbrev should not check." 201 "*List of buffer names that dabbrev should not check."
202 :type '(repeat (string :tag "Buffer name")) 202 :type '(repeat (string :tag "Buffer name"))
203 :group 'dabbrev 203 :group 'dabbrev
204 :version "20.3") 204 :version "20.3")
205 205