diff options
author | Gerd Moellmann <gerd@gnu.org> | 2000-11-28 09:36:33 +0000 |
---|---|---|
committer | Gerd Moellmann <gerd@gnu.org> | 2000-11-28 09:36:33 +0000 |
commit | 83d544cb791bd7ea3c6114ca67c59235ad62b94d (patch) | |
tree | 88a623f713b131f694d3c62fd307f9ee354f4503 /lisp/chistory.el | |
parent | fe3c2ae3293b7d0a08932dfba48624b482ffcb35 (diff) | |
download | emacs-83d544cb791bd7ea3c6114ca67c59235ad62b94d.tar.gz |
(Command-history-setup): Remove extraneous `keymap'
reference.
Diffstat (limited to 'lisp/chistory.el')
-rw-r--r-- | lisp/chistory.el | 2 |
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." (defun Command-history-setup () (kill-all-local-variables) - (use-local-map (or keymap command-history-map)) + (use-local-map command-history-map) (lisp-mode-variables nil) (set-syntax-table emacs-lisp-mode-syntax-table) (setq buffer-read-only t)) |