emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r107509: * lisp/eshell/em-cmpl.el (es


From: Leo Liu
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r107509: * lisp/eshell/em-cmpl.el (eshell-cmpl-initialize): Fix shift-tab key.
Date: Mon, 05 Mar 2012 18:44:31 +0800
User-agent: Bazaar (2.3.1)

------------------------------------------------------------
revno: 107509
committer: Leo Liu <address@hidden>
branch nick: trunk
timestamp: Mon 2012-03-05 18:44:31 +0800
message:
  * lisp/eshell/em-cmpl.el (eshell-cmpl-initialize): Fix shift-tab key.
modified:
  lisp/ChangeLog
  lisp/eshell/em-cmpl.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2012-03-05 06:10:11 +0000
+++ b/lisp/ChangeLog    2012-03-05 10:44:31 +0000
@@ -1,3 +1,7 @@
+2012-03-05  Leo Liu  <address@hidden>
+
+       * eshell/em-cmpl.el (eshell-cmpl-initialize): Fix shift-tab key.
+
 2012-03-05  Chong Yidong  <address@hidden>
 
        * simple.el (count-words): If called from Lisp, return the word

=== modified file 'lisp/eshell/em-cmpl.el'
--- a/lisp/eshell/em-cmpl.el    2012-01-19 07:21:25 +0000
+++ b/lisp/eshell/em-cmpl.el    2012-03-05 10:44:31 +0000
@@ -299,8 +299,7 @@
   ;; 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 ()


reply via email to

[Prev in Thread] Current Thread [Next in Thread]