summaryrefslogtreecommitdiff
path: root/lisp/ibuf-ext.el
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/ibuf-ext.el')
-rw-r--r--lisp/ibuf-ext.el10
1 files changed, 5 insertions, 5 deletions
diff --git a/lisp/ibuf-ext.el b/lisp/ibuf-ext.el
index 4aa1ec0874f..902b2f7cfbb 100644
--- a/lisp/ibuf-ext.el
+++ b/lisp/ibuf-ext.el
@@ -88,7 +88,7 @@ regardless of any active filters in this buffer."
(defvar ibuffer-tmp-hide-regexps nil
"A list of regexps which should match buffer names to not show.")
-
+
(defvar ibuffer-tmp-show-regexps nil
"A list of regexps which should match buffer names to always show.")
@@ -112,7 +112,7 @@ Do not set this variable directly! Use the function
(mode . java-mode)
(mode . idl-mode)
(mode . lisp-mode)))))
-
+
"An alist of filter qualifiers to switch between.
This variable should look like ((\"STRING\" QUALIFIERS)
@@ -170,7 +170,7 @@ 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)
@@ -921,7 +921,7 @@ of replacing the current filters."
(concat "Filter: " (mapconcat #'ibuffer-format-qualifier
(cdr (assq filter ibuffer-filter-groups))
" ") "\n")))
-
+
(defun ibuffer-format-qualifier (qualifier)
(if (eq (car-safe qualifier) 'not)
(concat " [NOT" (ibuffer-format-qualifier-1 (cdr qualifier)) "]")
@@ -939,7 +939,7 @@ of replacing the current filters."
(unless qualifier
(error "Ibuffer: bad qualifier %s" qualifier))
(concat " [" (cadr type) ": " (format "%s]" (cdr qualifier)))))))
-
+
(defun ibuffer-list-buffer-modes ()
"Create an alist of buffer modes currently in use.