diff options
author | John Paul Wallington <jpw@pobox.com> | 2003-02-11 14:59:54 +0000 |
---|---|---|
committer | John Paul Wallington <jpw@pobox.com> | 2003-02-11 14:59:54 +0000 |
commit | 36a579c1a572a9fcfd7328cfb16889ddaa9d4c31 (patch) | |
tree | 8497581ed53511046c9abcb89746ae7190eb9ee7 /lisp/ibuf-ext.el | |
parent | 9b4f7f2ed203bfcc5bfdf520588a1854563917d7 (diff) | |
download | emacs-36a579c1a572a9fcfd7328cfb16889ddaa9d4c31.tar.gz emacs-36a579c1a572a9fcfd7328cfb16889ddaa9d4c31.tar.bz2 emacs-36a579c1a572a9fcfd7328cfb16889ddaa9d4c31.zip |
(ibuffer-save-with-custom, ibuffer-add-to-tmp-hide)
(ibuffer-add-to-tmp-show): Doc fixes.
Diffstat (limited to 'lisp/ibuf-ext.el')
-rw-r--r-- | lisp/ibuf-ext.el | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/lisp/ibuf-ext.el b/lisp/ibuf-ext.el index 902b2f7cfbb..526ad45f630 100644 --- a/lisp/ibuf-ext.el +++ b/lisp/ibuf-ext.el @@ -170,7 +170,6 @@ The QUALIFIER should be the same as QUALIFIER in :group 'ibuffer) (defcustom ibuffer-saved-filter-groups nil - "An alist of filtering groups to switch between. This variable should look like ((\"STRING\" QUALIFIERS) @@ -201,7 +200,7 @@ functions `ibuffer-switch-to-saved-filter-group', (defcustom ibuffer-save-with-custom t "If non-nil, then use Custom to save interactively changed variables. Currently, this only applies to `ibuffer-saved-filters' and -`ibuffer-saved-filter-groups." +`ibuffer-saved-filter-groups'." :type 'boolean :group 'ibuffer) @@ -1150,7 +1149,7 @@ Ordering is lexicographic." (defun ibuffer-add-to-tmp-hide (regexp) "Add REGEXP to `ibuffer-tmp-hide-regexps'. This means that buffers whose name matches REGEXP will not be shown -for this ibuffer session." +for this Ibuffer session." (interactive (list (read-from-minibuffer "Never show buffers matching: " @@ -1161,7 +1160,7 @@ for this ibuffer session." (defun ibuffer-add-to-tmp-show (regexp) "Add REGEXP to `ibuffer-tmp-show-regexps'. This means that buffers whose name matches REGEXP will always be shown -for this ibuffer session." +for this Ibuffer session." (interactive (list (read-from-minibuffer "Always show buffers matching: " |