diff options
author | Glenn Morris <rgm@gnu.org> | 2018-03-21 19:38:44 -0400 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2018-03-21 19:38:44 -0400 |
commit | e32f3525ea3aabad0801874b24869b181535c104 (patch) | |
tree | 8ce4c2840d01fe2b6b798b8f5b249c2f3eba5bb1 /lisp/ibuf-ext.el | |
parent | 5268f3059db7638caa6d387d35e27870fbcb976c (diff) | |
download | emacs-e32f3525ea3aabad0801874b24869b181535c104.tar.gz |
* lisp/ibuf-ext.el (ibuffer-never-search-content-mode): Fix type.
Diffstat (limited to 'lisp/ibuf-ext.el')
-rw-r--r-- | lisp/ibuf-ext.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/ibuf-ext.el b/lisp/ibuf-ext.el index 2023165b2a6..a3143e5e29a 100644 --- a/lisp/ibuf-ext.el +++ b/lisp/ibuf-ext.el @@ -114,7 +114,7 @@ Buffers whose name matches a regexp in this list, are not searched." "A list of major modes ignored by `ibuffer-mark-by-content-regexp'. Buffers whose major mode is in this list, are not searched." :version "26.1" - :type '(repeat regexp) + :type '(repeat (symbol :tag "Major mode")) :require 'ibuf-ext :group 'ibuffer) |