aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
Diffstat (limited to 'lisp')
-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 @@
12001-09-22 Eli Zaretskii <eliz@is.elta.co.il> 12001-09-22 Eli Zaretskii <eliz@is.elta.co.il>
2 2
3 * hexl.el (hexl-mode-map): Fix the change of 2001-08-23: use
4 make-keymap instead of copy-keymap, since copying the global
5 keymap messes up the menu bar.
6
3 * info.el (Info-goto-node, Info-menu): Doc fix. Suggested by 7 * info.el (Info-goto-node, Info-menu): Doc fix. Suggested by
4 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>. 8 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>.
5 9
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."
866 866
867(if hexl-mode-map 867(if hexl-mode-map
868 nil 868 nil
869 (setq hexl-mode-map (copy-keymap (current-global-map))) 869 (setq hexl-mode-map (make-keymap))
870 ;; Make all self-inserting keys go through hexl-self-insert-command, 870 ;; Make all self-inserting keys go through hexl-self-insert-command,
871 ;; because we need to convert them to unibyte characters before 871 ;; because we need to convert them to unibyte characters before
872 ;; inserting them into the buffer. 872 ;; inserting them into the buffer.
873 (substitute-key-definition 'self-insert-command 'hexl-self-insert-command 873 (substitute-key-definition 'self-insert-command 'hexl-self-insert-command
874 hexl-mode-map) 874 hexl-mode-map (current-global-map))
875 875
876 (define-key hexl-mode-map [left] 'hexl-backward-char) 876 (define-key hexl-mode-map [left] 'hexl-backward-char)
877 (define-key hexl-mode-map [right] 'hexl-forward-char) 877 (define-key hexl-mode-map [right] 'hexl-forward-char)