diff options
| author | Dave Love | 1998-04-22 11:40:18 +0000 |
|---|---|---|
| committer | Dave Love | 1998-04-22 11:40:18 +0000 |
| commit | 306a5e68ac3e991ef4a5e970cfa357a26db42073 (patch) | |
| tree | 0409019133fc46d2972c4ca0512cc17647935c9e | |
| parent | 31354c30f668c552339b0636ae1e65e44a19cb86 (diff) | |
| download | emacs-306a5e68ac3e991ef4a5e970cfa357a26db42073.tar.gz emacs-306a5e68ac3e991ef4a5e970cfa357a26db42073.zip | |
(help-mode-map): Add S-tab, like backtab.
| -rw-r--r-- | lisp/help.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/help.el b/lisp/help.el index 7c3e94f8f0c..5911ec205fd 100644 --- a/lisp/help.el +++ b/lisp/help.el | |||
| @@ -96,6 +96,7 @@ | |||
| 96 | (define-key help-mode-map "\C-c\C-c" 'help-follow) | 96 | (define-key help-mode-map "\C-c\C-c" 'help-follow) |
| 97 | (define-key help-mode-map "\t" 'help-next-ref) | 97 | (define-key help-mode-map "\t" 'help-next-ref) |
| 98 | (define-key help-mode-map [backtab] 'help-previous-ref) | 98 | (define-key help-mode-map [backtab] 'help-previous-ref) |
| 99 | (define-key help-mode-map [(shift tab)] 'help-previous-ref) | ||
| 99 | ;; Documentation only, since we use minor-mode-overriding-map-alist. | 100 | ;; Documentation only, since we use minor-mode-overriding-map-alist. |
| 100 | (define-key help-mode-map "\r" 'help-follow) | 101 | (define-key help-mode-map "\r" 'help-follow) |
| 101 | 102 | ||