]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/eshell/em-cmpl.el (eshell-cmpl-initialize): Fix shift-tab key.
authorLeo Liu <sdl.web@gmail.com>
Mon, 5 Mar 2012 10:44:31 +0000 (18:44 +0800)
committerLeo Liu <sdl.web@gmail.com>
Mon, 5 Mar 2012 10:44:31 +0000 (18:44 +0800)
lisp/ChangeLog
lisp/eshell/em-cmpl.el

index 92d12fbc1ff2036b6f4f951876e27002a3299e7c..a6e04ca25dbb926736d943b5238c3d82ef90ac69 100644 (file)
@@ -1,3 +1,7 @@
+2012-03-05  Leo Liu  <sdl.web@gmail.com>
+
+       * eshell/em-cmpl.el (eshell-cmpl-initialize): Fix shift-tab key.
+
 2012-03-05  Chong Yidong  <cyd@gnu.org>
 
        * simple.el (count-words): If called from Lisp, return the word
index f997d47f665febd622e353362d4a7f66c65ffb7a..a5e1b6194c728e286d217335ee2923f254be1c41 100644 (file)
@@ -299,8 +299,7 @@ to writing a completion function."
   ;; jww (1999-10-19): Will this work on anything but X?
   (if (featurep 'xemacs)
       (define-key eshell-mode-map [iso-left-tab] 'pcomplete-reverse)
-    (define-key eshell-mode-map [(shift iso-lefttab)] 'pcomplete-reverse)
-    (define-key eshell-mode-map [(shift control ?i)] 'pcomplete-reverse))
+    (define-key eshell-mode-map [backtab] 'pcomplete-reverse))
   (define-key eshell-mode-map [(meta ??)] 'pcomplete-list))
 
 (defun eshell-completion-command-name ()