summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEli Zaretskii <eliz@gnu.org>2001-09-22 17:50:10 +0000
committerEli Zaretskii <eliz@gnu.org>2001-09-22 17:50:10 +0000
commit4b7dd7e2ff5d93bee2e1e591aa37d2b0ca4b617b (patch)
treed3f5520529a9b8099c463e1d46adf78b69d37347
parentdc414be1447317662dd07a5a706529cbf6b36474 (diff)
downloademacs-4b7dd7e2ff5d93bee2e1e591aa37d2b0ca4b617b.tar.gz
(hexl-mode-map): Fix the change of 2001-08-23: use
make-keymap instead of copy-keymap, since copying the global keymap messes up the menu bar.
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/hexl.el4
2 files changed, 6 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 5162fd3a94c..b680e0ec584 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,9 @@
2001-09-22 Eli Zaretskii <eliz@is.elta.co.il>
+ * hexl.el (hexl-mode-map): Fix the change of 2001-08-23: use
+ make-keymap instead of copy-keymap, since copying the global
+ keymap messes up the menu bar.
+
* info.el (Info-goto-node, Info-menu): Doc fix. Suggested by
Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>.
diff --git a/lisp/hexl.el b/lisp/hexl.el
index 1f65ca8309e..8883338a2e0 100644
--- a/lisp/hexl.el
+++ b/lisp/hexl.el
@@ -866,12 +866,12 @@ Customize the variable `hexl-follow-ascii' to disable this feature."
(if hexl-mode-map
nil
- (setq hexl-mode-map (copy-keymap (current-global-map)))
+ (setq hexl-mode-map (make-keymap))
;; Make all self-inserting keys go through hexl-self-insert-command,
;; because we need to convert them to unibyte characters before
;; inserting them into the buffer.
(substitute-key-definition 'self-insert-command 'hexl-self-insert-command
- hexl-mode-map)
+ hexl-mode-map (current-global-map))
(define-key hexl-mode-map [left] 'hexl-backward-char)
(define-key hexl-mode-map [right] 'hexl-forward-char)