diff options
author | Dave Love <fx@gnu.org> | 2000-11-30 19:12:41 +0000 |
---|---|---|
committer | Dave Love <fx@gnu.org> | 2000-11-30 19:12:41 +0000 |
commit | a8a1b05ddb385a12a2dc824e2df09c97cff98af6 (patch) | |
tree | 821408c3343df25d1de675177aeba81545f209ff /lisp/cus-start.el | |
parent | 05e88ea8d19573f21d9af0ba93f5e0835afa28ac (diff) | |
download | emacs-a8a1b05ddb385a12a2dc824e2df09c97cff98af6.tar.gz emacs-a8a1b05ddb385a12a2dc824e2df09c97cff98af6.tar.bz2 emacs-a8a1b05ddb385a12a2dc824e2df09c97cff98af6.zip |
Fix again.
Diffstat (limited to 'lisp/cus-start.el')
-rw-r--r-- | lisp/cus-start.el | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lisp/cus-start.el b/lisp/cus-start.el index 2709588840e..608d0bc7f8a 100644 --- a/lisp/cus-start.el +++ b/lisp/cus-start.el @@ -179,7 +179,10 @@ "21.1") (minibuffer-auto-raise minibuffer boolean) ;; options property set at end - (read-buffer-function minibuffer (choice (const nil) function)) + (read-buffer-function minibuffer + (choice (const nil) + (function-item iswitchb-read-buffer) + function)) ;; msdos.c (dos-unsupported-char-glyph display integer) ;; process.c @@ -295,7 +298,6 @@ (put symbol 'custom-type type) (put symbol 'custom-version version))))) -(custom-add-option 'read-buffer-function 'iswitchb-read-buffer) (custom-add-to-group 'iswitchb 'read-buffer-function 'custom-variable) ;; Record cus-start as loaded |