diff options
| author | Stephen Eglen | 2004-04-19 11:42:38 +0000 |
|---|---|---|
| committer | Stephen Eglen | 2004-04-19 11:42:38 +0000 |
| commit | f329780b740d90c13c38faa1b604208e2b770e47 (patch) | |
| tree | acb44272c8b0e9a961c3a74176736fe7fb7831f2 | |
| parent | d9ee517298da4ae71f078dd58240efdcd23a96a2 (diff) | |
| download | emacs-f329780b740d90c13c38faa1b604208e2b770e47.tar.gz emacs-f329780b740d90c13c38faa1b604208e2b770e47.zip | |
(iswitchb-max-to-show): Update documentation and :type information.
| -rw-r--r-- | lisp/iswitchb.el | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/lisp/iswitchb.el b/lisp/iswitchb.el index 4f560820b09..5ea1f856aca 100644 --- a/lisp/iswitchb.el +++ b/lisp/iswitchb.el | |||
| @@ -300,9 +300,11 @@ example functions that filter buffernames." | |||
| 300 | 300 | ||
| 301 | (defcustom iswitchb-max-to-show nil | 301 | (defcustom iswitchb-max-to-show nil |
| 302 | "*If non-nil, limit the number of names shown in the minibuffer. | 302 | "*If non-nil, limit the number of names shown in the minibuffer. |
| 303 | This can greatly speed up iswitchb if you have a multitude of | 303 | If this value is N, and N is greater than the number of matching |
| 304 | buffers open." | 304 | buffers, the first N/2 and the last N/2 matching buffers are |
| 305 | :type 'integer | 305 | shown. This can greatly speed up iswitchb if you have a |
| 306 | multitude of buffers open." | ||
| 307 | :type '(choice (const nil) integer) | ||
| 306 | :group 'iswitchb) | 308 | :group 'iswitchb) |
| 307 | 309 | ||
| 308 | (defcustom iswitchb-cannot-complete-hook 'iswitchb-completion-help | 310 | (defcustom iswitchb-cannot-complete-hook 'iswitchb-completion-help |