diff options
| author | Eric S. Raymond | 1992-08-03 22:07:34 +0000 |
|---|---|---|
| committer | Eric S. Raymond | 1992-08-03 22:07:34 +0000 |
| commit | e17d2fd17924c106f91b1cbc8d0a38561e7f00ad (patch) | |
| tree | 14ba5ac9fa19318759a2abf15489f785d17306db /lisp | |
| parent | 8892e83c7c27d449031dd7939dcc7dee3524f49c (diff) | |
| download | emacs-e17d2fd17924c106f91b1cbc8d0a38561e7f00ad.tar.gz emacs-e17d2fd17924c106f91b1cbc8d0a38561e7f00ad.zip | |
entered into RCS
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/ebuff-menu.el | 2 | ||||
| -rw-r--r-- | lisp/echistory.el | 2 | ||||
| -rw-r--r-- | lisp/help.el | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/lisp/ebuff-menu.el b/lisp/ebuff-menu.el index f9bb8adf3b6..bc05ade43bf 100644 --- a/lisp/ebuff-menu.el +++ b/lisp/ebuff-menu.el | |||
| @@ -221,7 +221,7 @@ Does not execute select, save, or delete commands." | |||
| 221 | (ding) | 221 | (ding) |
| 222 | (message (if (and (eq (key-binding "\C-c\C-c") 'Electric-buffer-menu-quit) | 222 | (message (if (and (eq (key-binding "\C-c\C-c") 'Electric-buffer-menu-quit) |
| 223 | (eq (key-binding " ") 'Electric-buffer-menu-select) | 223 | (eq (key-binding " ") 'Electric-buffer-menu-select) |
| 224 | (eq (key-binding help-key) 'Helper-help) | 224 | (eq (key-binding (char-to-string help-char)) 'Helper-help) |
| 225 | (eq (key-binding "?") 'Helper-describe-bindings)) | 225 | (eq (key-binding "?") 'Helper-describe-bindings)) |
| 226 | (substitute-command-keys "Type C-c C-c to exit, Space to select, \\[Helper-help] for help, ? for commands") | 226 | (substitute-command-keys "Type C-c C-c to exit, Space to select, \\[Helper-help] for help, ? for commands") |
| 227 | (substitute-command-keys "\ | 227 | (substitute-command-keys "\ |
diff --git a/lisp/echistory.el b/lisp/echistory.el index 80e8bed764b..e78856143eb 100644 --- a/lisp/echistory.el +++ b/lisp/echistory.el | |||
| @@ -63,7 +63,7 @@ With prefix arg NOCONFIRM, execute current line as-is without editing." | |||
| 63 | (define-key electric-history-map "\C-c\C-c" 'Electric-history-quit) | 63 | (define-key electric-history-map "\C-c\C-c" 'Electric-history-quit) |
| 64 | (define-key electric-history-map "\C-]" 'Electric-history-quit) | 64 | (define-key electric-history-map "\C-]" 'Electric-history-quit) |
| 65 | (define-key electric-history-map "\C-z" 'suspend-emacs) | 65 | (define-key electric-history-map "\C-z" 'suspend-emacs) |
| 66 | (define-key electric-history-map help-char 'Helper-help) | 66 | (define-key electric-history-map (char-to-string help-char) 'Helper-help) |
| 67 | (define-key electric-history-map "?" 'Helper-describe-bindings) | 67 | (define-key electric-history-map "?" 'Helper-describe-bindings) |
| 68 | (define-key electric-history-map "\e>" 'end-of-buffer) | 68 | (define-key electric-history-map "\e>" 'end-of-buffer) |
| 69 | (define-key electric-history-map "\e<" 'beginning-of-buffer) | 69 | (define-key electric-history-map "\e<" 'beginning-of-buffer) |
diff --git a/lisp/help.el b/lisp/help.el index 29cf96e42fc..89ed440ff20 100644 --- a/lisp/help.el +++ b/lisp/help.el | |||
| @@ -26,10 +26,10 @@ | |||
| 26 | (defvar help-map (make-sparse-keymap) | 26 | (defvar help-map (make-sparse-keymap) |
| 27 | "Keymap for characters following the Help key.") | 27 | "Keymap for characters following the Help key.") |
| 28 | 28 | ||
| 29 | (define-key global-map help-key 'help-command) | 29 | (define-key global-map (char-to-string help-char) 'help-command) |
| 30 | (fset 'help-command help-map) | 30 | (fset 'help-command help-map) |
| 31 | 31 | ||
| 32 | (define-key help-map help-char 'help-for-help) | 32 | (define-key help-map (char-to-string help-char) 'help-for-help) |
| 33 | (define-key help-map "?" 'help-for-help) | 33 | (define-key help-map "?" 'help-for-help) |
| 34 | 34 | ||
| 35 | (define-key help-map "\C-c" 'describe-copying) | 35 | (define-key help-map "\C-c" 'describe-copying) |