unofficial mirror of bug-gnu-emacs@gnu.org 
 help / color / mirror / code / Atom feed
* bug#30901: 26.0.91; defcustom ibuffer-never-search-content-mode type mismatches default
@ 2018-03-21 23:03 Alex Branham
  2018-03-21 23:40 ` Glenn Morris
  0 siblings, 1 reply; 2+ messages in thread
From: Alex Branham @ 2018-03-21 23:03 UTC (permalink / raw)
  To: 30901

ibuffer-never-search-content-mode's default does not match its :type,
causing M-x customize-variable to complain about it:

(defcustom ibuffer-never-search-content-mode '(dired-mode)
  "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)
  :require 'ibuf-ext
  :group 'ibuffer)





^ permalink raw reply	[flat|nested] 2+ messages in thread

* bug#30901: 26.0.91; defcustom ibuffer-never-search-content-mode type mismatches default
  2018-03-21 23:03 bug#30901: 26.0.91; defcustom ibuffer-never-search-content-mode type mismatches default Alex Branham
@ 2018-03-21 23:40 ` Glenn Morris
  0 siblings, 0 replies; 2+ messages in thread
From: Glenn Morris @ 2018-03-21 23:40 UTC (permalink / raw)
  To: 30901-done

Version: 26.1

commit e32f352 (HEAD, emacs-26)
Date:   Wed Mar 21 19:38:44 2018 -0400

    * lisp/ibuf-ext.el (ibuffer-never-search-content-mode): Fix type.

diff --git a/lisp/ibuf-ext.el b/lisp/ibuf-ext.el
index 2023165..a3143e5 100644
--- a/lisp/ibuf-ext.el
+++ b/lisp/ibuf-ext.el
@@ -114,7 +114,7 @@ ibuffer-never-search-content-mode
   "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)
 





^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2018-03-21 23:40 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-03-21 23:03 bug#30901: 26.0.91; defcustom ibuffer-never-search-content-mode type mismatches default Alex Branham
2018-03-21 23:40 ` Glenn Morris

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).