aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric S. Raymond1992-08-03 21:32:21 +0000
committerEric S. Raymond1992-08-03 21:32:21 +0000
commit573cd9243973d16c0d4807d9c5c220fa5df0efad (patch)
tree394fc9c0acec523c81676720fe2ab12494c3cf17
parentcd5e3fae77409adefad2ec1041020f6e03679c38 (diff)
downloademacs-573cd9243973d16c0d4807d9c5c220fa5df0efad.tar.gz
emacs-573cd9243973d16c0d4807d9c5c220fa5df0efad.zip
*** empty log message ***
-rw-r--r--lisp/ebuff-menu.el2
-rw-r--r--lisp/hexl.el7
2 files changed, 6 insertions, 3 deletions
diff --git a/lisp/ebuff-menu.el b/lisp/ebuff-menu.el
index 8a0c469f938..de244ee026b 100644
--- a/lisp/ebuff-menu.el
+++ b/lisp/ebuff-menu.el
@@ -226,7 +226,7 @@ Does not execute select, save, or delete commands."
226 (eq (key-binding " ") 'Electric-buffer-menu-select) 226 (eq (key-binding " ") 'Electric-buffer-menu-select)
227 (eq (key-binding help-key) 'Helper-help) 227 (eq (key-binding help-key) 'Helper-help)
228 (eq (key-binding "?") 'Helper-describe-bindings)) 228 (eq (key-binding "?") 'Helper-describe-bindings))
229 "Type C-c C-c to exit, Space to select, C-h for help, ? for commands" 229 (substitute-command-keys "Type C-c C-c to exit, Space to select, \\[Helper-help] for help, ? for commands")
230 (substitute-command-keys "\ 230 (substitute-command-keys "\
231Type \\[Electric-buffer-menu-quit] to exit, \ 231Type \\[Electric-buffer-menu-quit] to exit, \
232\\[Electric-buffer-menu-select] to select, \ 232\\[Electric-buffer-menu-select] to select, \
diff --git a/lisp/hexl.el b/lisp/hexl.el
index c9d0c023de4..e5a2b1e0e0e 100644
--- a/lisp/hexl.el
+++ b/lisp/hexl.el
@@ -67,6 +67,9 @@ and \"-de\" when dehexlfying a buffer.")
67(defvar hexl-max-address 0 67(defvar hexl-max-address 0
68 "Maximum offset into hexl buffer.") 68 "Maximum offset into hexl buffer.")
69 69
70(defvar help-key "\C-h"
71 "*Key used to invoke electric help.")
72
70(defvar hexl-mode-map nil) 73(defvar hexl-mode-map nil)
71 74
72;; routines 75;; routines
@@ -586,8 +589,8 @@ You may also type up to 3 octal digits, to insert a character with that code"
586 (define-key hexl-mode-map "\C-e" 'hexl-end-of-line) 589 (define-key hexl-mode-map "\C-e" 'hexl-end-of-line)
587 (define-key hexl-mode-map "\C-f" 'hexl-forward-char) 590 (define-key hexl-mode-map "\C-f" 'hexl-forward-char)
588 591
589 (if (not (eq (key-binding "\C-h") 'help-command)) 592 (if (not (eq (key-binding help-key) 'help-command))
590 (define-key hexl-mode-map "\C-h" 'undefined)) 593 (define-key hexl-mode-map help-key 'undefined))
591 594
592 (define-key hexl-mode-map "\C-i" 'hexl-self-insert-command) 595 (define-key hexl-mode-map "\C-i" 'hexl-self-insert-command)
593 (define-key hexl-mode-map "\C-j" 'hexl-self-insert-command) 596 (define-key hexl-mode-map "\C-j" 'hexl-self-insert-command)