aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Love2000-11-30 19:12:41 +0000
committerDave Love2000-11-30 19:12:41 +0000
commita8a1b05ddb385a12a2dc824e2df09c97cff98af6 (patch)
tree821408c3343df25d1de675177aeba81545f209ff
parent05e88ea8d19573f21d9af0ba93f5e0835afa28ac (diff)
downloademacs-a8a1b05ddb385a12a2dc824e2df09c97cff98af6.tar.gz
emacs-a8a1b05ddb385a12a2dc824e2df09c97cff98af6.zip
Fix again.
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/cus-start.el6
2 files changed, 8 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 334017d5330..24038acf596 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12000-11-30 Dave Love <fx@gnu.org>
2
3 * cus-start.el: Fix read-buffer-function type.
4
12000-11-30 Gerd Moellmann <gerd@gnu.org> 52000-11-30 Gerd Moellmann <gerd@gnu.org>
2 6
3 * md5.el: Removed. There's a built-in function, now. 7 * md5.el: Removed. There's a built-in function, now.
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 @@
179 "21.1") 179 "21.1")
180 (minibuffer-auto-raise minibuffer boolean) 180 (minibuffer-auto-raise minibuffer boolean)
181 ;; options property set at end 181 ;; options property set at end
182 (read-buffer-function minibuffer (choice (const nil) function)) 182 (read-buffer-function minibuffer
183 (choice (const nil)
184 (function-item iswitchb-read-buffer)
185 function))
183 ;; msdos.c 186 ;; msdos.c
184 (dos-unsupported-char-glyph display integer) 187 (dos-unsupported-char-glyph display integer)
185 ;; process.c 188 ;; process.c
@@ -295,7 +298,6 @@
295 (put symbol 'custom-type type) 298 (put symbol 'custom-type type)
296 (put symbol 'custom-version version))))) 299 (put symbol 'custom-version version)))))
297 300
298(custom-add-option 'read-buffer-function 'iswitchb-read-buffer)
299(custom-add-to-group 'iswitchb 'read-buffer-function 'custom-variable) 301(custom-add-to-group 'iswitchb 'read-buffer-function 'custom-variable)
300 302
301;; Record cus-start as loaded 303;; Record cus-start as loaded