]> git.eshelyaron.com Git - emacs.git/commitdiff
(custom-mode-map): Use a sparse map.
authorStefan Monnier <monnier@iro.umontreal.ca>
Fri, 27 Oct 2000 00:55:09 +0000 (00:55 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Fri, 27 Oct 2000 00:55:09 +0000 (00:55 +0000)
(custom-mode): Don't bother with make-local-hook.

lisp/cus-edit.el

index da0ee18b2d7278685c84d947e23c9297a7bdcacd..b9d0591957241dd4e2c05a68f8925c4f5c6f68e3 100644 (file)
@@ -3659,7 +3659,7 @@ The format is suitable for use with `easy-menu-define'."
   "Keymap for `custom-mode'.")
 
 (unless custom-mode-map
-  (setq custom-mode-map (make-sparse-keymap))
+  (setq custom-mode-map (make-keymap))
   (set-keymap-parent custom-mode-map widget-keymap)
   (suppress-keymap custom-mode-map)
   (define-key custom-mode-map " " 'scroll-up)
@@ -3753,7 +3753,6 @@ if that value is non-nil."
     (set (make-local-variable 'widget-push-button-suffix) "")
     (set (make-local-variable 'widget-link-prefix) "")
     (set (make-local-variable 'widget-link-suffix) ""))
-  (make-local-hook 'widget-edit-functions)
   (add-hook 'widget-edit-functions 'custom-state-buffer-message nil t)
   (run-hooks 'custom-mode-hook))