]> git.eshelyaron.com Git - emacs.git/commitdiff
(advertised-widget-backward): New alias.
authorRichard M. Stallman <rms@gnu.org>
Thu, 26 Jan 2006 17:59:01 +0000 (17:59 +0000)
committerRichard M. Stallman <rms@gnu.org>
Thu, 26 Jan 2006 17:59:01 +0000 (17:59 +0000)
(widget-keymap): Use advertised-widget-backward for S-TAB.

lisp/wid-edit.el

index 01b82b685c1c3841fb6c7b9fa6a8d5e321576850..21cbf72797e67d434e2a9be7cbf57ce2b99b23ed 100644 (file)
@@ -849,12 +849,15 @@ button end points."
 
 ;;; Keymap and Commands.
 
+;;;###autoload
+(defalias 'advertised-widget-backward 'widget-backward)
+
 ;;;###autoload
 (defvar widget-keymap
   (let ((map (make-sparse-keymap)))
     (define-key map "\t" 'widget-forward)
     (define-key map "\e\t" 'widget-backward)
-    (define-key map [(shift tab)] 'widget-backward)
+    (define-key map [(shift tab)] 'advertised-widget-backward)
     (define-key map [backtab] 'widget-backward)
     (define-key map [down-mouse-2] 'widget-button-click)
     (define-key map "\C-m" 'widget-button-press)