From: Lars Magne Ingebrigtsen Date: Thu, 7 Jul 2011 18:28:25 +0000 (+0200) Subject: (Info-mode-map): Remove S-TAB binding, since [backtab] should cover it X-Git-Tag: emacs-pretest-24.0.90~104^2~443 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=f3f8e37fa7b4a49379f7b1a61d22a6c68e3fadff;p=emacs.git (Info-mode-map): Remove S-TAB binding, since [backtab] should cover it Fixes: debbugs:1281 --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 9ca85524b8b..5d19a486aa1 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,8 @@ 2011-07-07 Lars Magne Ingebrigtsen + * info.el (Info-mode-map): Remove S-TAB binding, since [backtab] + should cover it (bug#1281). + * cus-edit.el (custom-show): Marked as obsolete. * net/network-stream.el (network-stream-open-starttls): If gnutls diff --git a/lisp/info.el b/lisp/info.el index 047a1b340a0..158f6929a7a 100644 --- a/lisp/info.el +++ b/lisp/info.el @@ -3645,7 +3645,6 @@ If FORK is non-nil, it is passed to `Info-goto-node'." (define-key map "\C-m" 'Info-follow-nearest-node) (define-key map "\t" 'Info-next-reference) (define-key map "\e\t" 'Info-prev-reference) - (define-key map [(shift tab)] 'Info-prev-reference) (define-key map [backtab] 'Info-prev-reference) (define-key map "1" 'Info-nth-menu-item) (define-key map "2" 'Info-nth-menu-item)