diff options
author | Dave Love <fx@gnu.org> | 2000-10-08 16:19:28 +0000 |
---|---|---|
committer | Dave Love <fx@gnu.org> | 2000-10-08 16:19:28 +0000 |
commit | 660e161fd92a459dbc30d797c6b697c5f870ac13 (patch) | |
tree | be358b929573992de0d9c674fcc532aee87ce4a8 /lisp/iswitchb.el | |
parent | a30ed6ace67b87e1b36c57d6f3b08c2f2adf92a4 (diff) | |
download | emacs-660e161fd92a459dbc30d797c6b697c5f870ac13.tar.gz |
(iswitchb-mode): Add :require.
Diffstat (limited to 'lisp/iswitchb.el')
-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'." (iswitchb-mode (or value 0))) :initialize 'custom-initialize-default :group 'iswitchb + :require 'iswitchb :version "21.1" :type 'boolean) @@ -574,7 +575,7 @@ If REQUIRE-MATCH is non-nil, an existing-buffer must be selected." ;; prompt the user for the buffer name (setq iswitchb-final-text (completing-read prompt ;the prompt - '(("dummy".1)) ;table + '(("dummy" . 1)) ;table nil ;predicate nil ;require-match [handled elsewhere] nil ;initial-contents |