From: Juri Linkov Date: Mon, 28 Nov 2005 21:20:28 +0000 (+0000) Subject: Bind [S-tab] to [backtab]. X-Git-Tag: emacs-pretest-22.0.90~5620 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=756bfad5752f35da3dd0b15b1ae2ad0d81726437;p=emacs.git Bind [S-tab] to [backtab]. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 41b8cdd5470..404eda33c5d 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -2,6 +2,11 @@ * simple.el (quoted-insert): Let-bind input-method-function to nil. + * term/w32-win.el: Bind [S-tab] to [backtab]. + + * info.el (Info-fontify-node): Set 2nd arg `noerror' of + `Info-find-file' to t. + * replace.el (occur-mode-mouse-goto): Pop, don't switch. (occur-mode-goto-occurrence): Let-bind same-window-buffer-names 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") (substitute-key-definition 'suspend-emacs 'iconify-or-deiconify-frame global-map) +(define-key function-key-map [S-tab] [backtab]) + ;;; Do the actual Windows setup here; the above code just defines ;;; functions and variables that we use now.