summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex <agrambot@gmail.com>2017-08-09 17:07:57 -0600
committerNoam Postavsky <npostavs@gmail.com>2018-07-17 21:40:59 -0400
commit1c79d15863b768fe3156647a54d03a90688dd361 (patch)
tree78d5b594314a6502c844cf1b5cf59ed246c64923
parent3f391c89fde26bb62af1f4d1116f2824fc931fba (diff)
downloademacs-1c79d15863b768fe3156647a54d03a90688dd361.tar.gz
Remove menu name from emacs-lisp-mode-map (Bug#27114)
* lisp/progmodes/elisp-mode.el (emacs-lisp-mode-map): Don't give a menu name to the top-level map, the menu name is only useful for the menu-map.
-rw-r--r--lisp/progmodes/elisp-mode.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/elisp-mode.el b/lisp/progmodes/elisp-mode.el
index 58a58b46395..f694252c407 100644
--- a/lisp/progmodes/elisp-mode.el
+++ b/lisp/progmodes/elisp-mode.el
@@ -45,7 +45,7 @@ It has `lisp-mode-abbrev-table' as its parent."
"Syntax table used in `emacs-lisp-mode'.")
(defvar emacs-lisp-mode-map
- (let ((map (make-sparse-keymap "Emacs-Lisp"))
+ (let ((map (make-sparse-keymap))
(menu-map (make-sparse-keymap "Emacs-Lisp"))
(lint-map (make-sparse-keymap))
(prof-map (make-sparse-keymap))