diff options
| author | Juri Linkov | 2005-11-28 21:20:28 +0000 |
|---|---|---|
| committer | Juri Linkov | 2005-11-28 21:20:28 +0000 |
| commit | 756bfad5752f35da3dd0b15b1ae2ad0d81726437 (patch) | |
| tree | 6deb3f90c058d239c62795432ffa8e337391d8f2 | |
| parent | e4300bdfc8dffd3f79b7ba59664a2e457ea7fe8d (diff) | |
| download | emacs-756bfad5752f35da3dd0b15b1ae2ad0d81726437.tar.gz emacs-756bfad5752f35da3dd0b15b1ae2ad0d81726437.zip | |
Bind [S-tab] to [backtab].
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/term/w32-win.el | 2 |
2 files changed, 7 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 41b8cdd5470..404eda33c5d 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -2,6 +2,11 @@ | |||
| 2 | 2 | ||
| 3 | * simple.el (quoted-insert): Let-bind input-method-function to nil. | 3 | * simple.el (quoted-insert): Let-bind input-method-function to nil. |
| 4 | 4 | ||
| 5 | * term/w32-win.el: Bind [S-tab] to [backtab]. | ||
| 6 | |||
| 7 | * info.el (Info-fontify-node): Set 2nd arg `noerror' of | ||
| 8 | `Info-find-file' to t. | ||
| 9 | |||
| 5 | * replace.el (occur-mode-mouse-goto): Pop, don't switch. | 10 | * replace.el (occur-mode-mouse-goto): Pop, don't switch. |
| 6 | (occur-mode-goto-occurrence): Let-bind same-window-buffer-names | 11 | (occur-mode-goto-occurrence): Let-bind same-window-buffer-names |
| 7 | and same-window-regexps. | 12 | and same-window-regexps. |
diff --git a/lisp/term/w32-win.el b/lisp/term/w32-win.el index ffa7d606a95..aff6d032f06 100644 --- a/lisp/term/w32-win.el +++ b/lisp/term/w32-win.el | |||
| @@ -1039,6 +1039,8 @@ XConsortium: rgb.txt,v 10.41 94/02/20 18:39:36 rws Exp") | |||
| 1039 | (substitute-key-definition 'suspend-emacs 'iconify-or-deiconify-frame | 1039 | (substitute-key-definition 'suspend-emacs 'iconify-or-deiconify-frame |
| 1040 | global-map) | 1040 | global-map) |
| 1041 | 1041 | ||
| 1042 | (define-key function-key-map [S-tab] [backtab]) | ||
| 1043 | |||
| 1042 | 1044 | ||
| 1043 | ;;; Do the actual Windows setup here; the above code just defines | 1045 | ;;; Do the actual Windows setup here; the above code just defines |
| 1044 | ;;; functions and variables that we use now. | 1046 | ;;; functions and variables that we use now. |