diff options
| -rw-r--r-- | lisp/ibuffer.el | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ibuffer.el b/lisp/ibuffer.el index e3ae9dcc5c4..32334f5a942 100644 --- a/lisp/ibuffer.el +++ b/lisp/ibuffer.el | |||
| @@ -170,6 +170,11 @@ element with the highest PRIORITY takes precedence." | |||
| 170 | :group 'ibuffer) | 170 | :group 'ibuffer) |
| 171 | (defvar ibuffer-shrink-to-minimum-size nil) | 171 | (defvar ibuffer-shrink-to-minimum-size nil) |
| 172 | 172 | ||
| 173 | (defcustom ibuffer-truncate-lines t | ||
| 174 | "If non-nil, do not display continuation lines." | ||
| 175 | :type 'boolean | ||
| 176 | :group 'ibuffer) | ||
| 177 | |||
| 173 | (defcustom ibuffer-case-fold-search case-fold-search | 178 | (defcustom ibuffer-case-fold-search case-fold-search |
| 174 | "If non-nil, ignore case when searching." | 179 | "If non-nil, ignore case when searching." |
| 175 | :type 'boolean | 180 | :type 'boolean |
| @@ -2098,7 +2103,7 @@ to disable all filtering currently in effect, use | |||
| 2098 | (setq mode-name "Ibuffer") | 2103 | (setq mode-name "Ibuffer") |
| 2099 | (setq buffer-read-only t) | 2104 | (setq buffer-read-only t) |
| 2100 | (buffer-disable-undo) | 2105 | (buffer-disable-undo) |
| 2101 | (setq truncate-lines t) | 2106 | (setq truncate-lines ibuffer-truncate-lines) |
| 2102 | ;; This makes things less ugly for Emacs 21 users with a non-nil | 2107 | ;; This makes things less ugly for Emacs 21 users with a non-nil |
| 2103 | ;; `show-trailing-whitespace'. | 2108 | ;; `show-trailing-whitespace'. |
| 2104 | (setq show-trailing-whitespace nil) | 2109 | (setq show-trailing-whitespace nil) |