aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorColin Walters2002-03-08 04:06:18 +0000
committerColin Walters2002-03-08 04:06:18 +0000
commit6d63dcf565fe44b713223e09ea7ed093968f1403 (patch)
tree2a32dcee289b17b2014809a2cfa24e6e0d9ef7de
parentcb05942644e5507f43d82b0ef3797672117ca383 (diff)
downloademacs-6d63dcf565fe44b713223e09ea7ed093968f1403.tar.gz
emacs-6d63dcf565fe44b713223e09ea7ed093968f1403.zip
(ibuffer-filter-format-alist): Add type and group.
-rw-r--r--lisp/ibuf-ext.el5
1 files changed, 4 insertions, 1 deletions
diff --git a/lisp/ibuf-ext.el b/lisp/ibuf-ext.el
index bcd0a5a6c22..1c3f6c74930 100644
--- a/lisp/ibuf-ext.el
+++ b/lisp/ibuf-ext.el
@@ -142,7 +142,10 @@ For example, suppose that when you add a filter for buffers whose
142major mode is `emacs-lisp-mode', you only want to see the mark and the 142major mode is `emacs-lisp-mode', you only want to see the mark and the
143name of the buffer. You could accomplish that by adding: 143name of the buffer. You could accomplish that by adding:
144 (mode ((mark \" \" name))) 144 (mode ((mark \" \" name)))
145to this variable.") 145to this variable."
146 :type '(repeat (list :tag "Association" (symbol :tag "Filter")
147 (list :tag "Formats" (repeat (sexp :tag "Format")))))
148 :group 'ibuffer)
146 149
147(defvar ibuffer-cached-filter-formats nil) 150(defvar ibuffer-cached-filter-formats nil)
148(defvar ibuffer-compiled-filter-formats nil) 151(defvar ibuffer-compiled-filter-formats nil)