diff options
| author | John Paul Wallington | 2003-02-11 14:59:54 +0000 |
|---|---|---|
| committer | John Paul Wallington | 2003-02-11 14:59:54 +0000 |
| commit | 36a579c1a572a9fcfd7328cfb16889ddaa9d4c31 (patch) | |
| tree | 8497581ed53511046c9abcb89746ae7190eb9ee7 | |
| parent | 9b4f7f2ed203bfcc5bfdf520588a1854563917d7 (diff) | |
| download | emacs-36a579c1a572a9fcfd7328cfb16889ddaa9d4c31.tar.gz emacs-36a579c1a572a9fcfd7328cfb16889ddaa9d4c31.zip | |
(ibuffer-save-with-custom, ibuffer-add-to-tmp-hide)
(ibuffer-add-to-tmp-show): Doc fixes.
| -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 | |||
| 170 | :group 'ibuffer) | 170 | :group 'ibuffer) |
| 171 | 171 | ||
| 172 | (defcustom ibuffer-saved-filter-groups nil | 172 | (defcustom ibuffer-saved-filter-groups nil |
| 173 | |||
| 174 | "An alist of filtering groups to switch between. | 173 | "An alist of filtering groups to switch between. |
| 175 | 174 | ||
| 176 | This variable should look like ((\"STRING\" QUALIFIERS) | 175 | This variable should look like ((\"STRING\" QUALIFIERS) |
| @@ -201,7 +200,7 @@ functions `ibuffer-switch-to-saved-filter-group', | |||
| 201 | (defcustom ibuffer-save-with-custom t | 200 | (defcustom ibuffer-save-with-custom t |
| 202 | "If non-nil, then use Custom to save interactively changed variables. | 201 | "If non-nil, then use Custom to save interactively changed variables. |
| 203 | Currently, this only applies to `ibuffer-saved-filters' and | 202 | Currently, this only applies to `ibuffer-saved-filters' and |
| 204 | `ibuffer-saved-filter-groups." | 203 | `ibuffer-saved-filter-groups'." |
| 205 | :type 'boolean | 204 | :type 'boolean |
| 206 | :group 'ibuffer) | 205 | :group 'ibuffer) |
| 207 | 206 | ||
| @@ -1150,7 +1149,7 @@ Ordering is lexicographic." | |||
| 1150 | (defun ibuffer-add-to-tmp-hide (regexp) | 1149 | (defun ibuffer-add-to-tmp-hide (regexp) |
| 1151 | "Add REGEXP to `ibuffer-tmp-hide-regexps'. | 1150 | "Add REGEXP to `ibuffer-tmp-hide-regexps'. |
| 1152 | This means that buffers whose name matches REGEXP will not be shown | 1151 | This means that buffers whose name matches REGEXP will not be shown |
| 1153 | for this ibuffer session." | 1152 | for this Ibuffer session." |
| 1154 | (interactive | 1153 | (interactive |
| 1155 | (list | 1154 | (list |
| 1156 | (read-from-minibuffer "Never show buffers matching: " | 1155 | (read-from-minibuffer "Never show buffers matching: " |
| @@ -1161,7 +1160,7 @@ for this ibuffer session." | |||
| 1161 | (defun ibuffer-add-to-tmp-show (regexp) | 1160 | (defun ibuffer-add-to-tmp-show (regexp) |
| 1162 | "Add REGEXP to `ibuffer-tmp-show-regexps'. | 1161 | "Add REGEXP to `ibuffer-tmp-show-regexps'. |
| 1163 | This means that buffers whose name matches REGEXP will always be shown | 1162 | This means that buffers whose name matches REGEXP will always be shown |
| 1164 | for this ibuffer session." | 1163 | for this Ibuffer session." |
| 1165 | (interactive | 1164 | (interactive |
| 1166 | (list | 1165 | (list |
| 1167 | (read-from-minibuffer "Always show buffers matching: " | 1166 | (read-from-minibuffer "Always show buffers matching: " |