aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGerd Moellmann2000-11-28 09:36:33 +0000
committerGerd Moellmann2000-11-28 09:36:33 +0000
commit83d544cb791bd7ea3c6114ca67c59235ad62b94d (patch)
tree88a623f713b131f694d3c62fd307f9ee354f4503
parentfe3c2ae3293b7d0a08932dfba48624b482ffcb35 (diff)
downloademacs-83d544cb791bd7ea3c6114ca67c59235ad62b94d.tar.gz
emacs-83d544cb791bd7ea3c6114ca67c59235ad62b94d.zip
(Command-history-setup): Remove extraneous `keymap'
reference.
-rw-r--r--lisp/chistory.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/chistory.el b/lisp/chistory.el
index a32720a40ce..40b13743446 100644
--- a/lisp/chistory.el
+++ b/lisp/chistory.el
@@ -134,7 +134,7 @@ The buffer is left in Command History mode."
134 134
135(defun Command-history-setup () 135(defun Command-history-setup ()
136 (kill-all-local-variables) 136 (kill-all-local-variables)
137 (use-local-map (or keymap command-history-map)) 137 (use-local-map command-history-map)
138 (lisp-mode-variables nil) 138 (lisp-mode-variables nil)
139 (set-syntax-table emacs-lisp-mode-syntax-table) 139 (set-syntax-table emacs-lisp-mode-syntax-table)
140 (setq buffer-read-only t)) 140 (setq buffer-read-only t))