diff options
| author | Dave Love | 2000-10-08 16:19:28 +0000 |
|---|---|---|
| committer | Dave Love | 2000-10-08 16:19:28 +0000 |
| commit | 660e161fd92a459dbc30d797c6b697c5f870ac13 (patch) | |
| tree | be358b929573992de0d9c674fcc532aee87ce4a8 | |
| parent | a30ed6ace67b87e1b36c57d6f3b08c2f2adf92a4 (diff) | |
| download | emacs-660e161fd92a459dbc30d797c6b697c5f870ac13.tar.gz emacs-660e161fd92a459dbc30d797c6b697c5f870ac13.zip | |
(iswitchb-mode): Add :require.
| -rw-r--r-- | lisp/iswitchb.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/iswitchb.el b/lisp/iswitchb.el index b34c8fee70e..bee6769c89f 100644 --- a/lisp/iswitchb.el +++ b/lisp/iswitchb.el | |||
| @@ -244,6 +244,7 @@ use either \\[customize] or the function `iswitchb-mode'." | |||
| 244 | (iswitchb-mode (or value 0))) | 244 | (iswitchb-mode (or value 0))) |
| 245 | :initialize 'custom-initialize-default | 245 | :initialize 'custom-initialize-default |
| 246 | :group 'iswitchb | 246 | :group 'iswitchb |
| 247 | :require 'iswitchb | ||
| 247 | :version "21.1" | 248 | :version "21.1" |
| 248 | :type 'boolean) | 249 | :type 'boolean) |
| 249 | 250 | ||
| @@ -574,7 +575,7 @@ If REQUIRE-MATCH is non-nil, an existing-buffer must be selected." | |||
| 574 | ;; prompt the user for the buffer name | 575 | ;; prompt the user for the buffer name |
| 575 | (setq iswitchb-final-text (completing-read | 576 | (setq iswitchb-final-text (completing-read |
| 576 | prompt ;the prompt | 577 | prompt ;the prompt |
| 577 | '(("dummy".1)) ;table | 578 | '(("dummy" . 1)) ;table |
| 578 | nil ;predicate | 579 | nil ;predicate |
| 579 | nil ;require-match [handled elsewhere] | 580 | nil ;require-match [handled elsewhere] |
| 580 | nil ;initial-contents | 581 | nil ;initial-contents |