aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2007-11-15 12:01:04 +0000
committerRichard M. Stallman2007-11-15 12:01:04 +0000
commit2d914448d5347cf3ad709d538b949f34f529407a (patch)
tree58f1eaf557440035b6e8215aa309ae8594e29fcc
parent65540e58e7fd1a6ad8d6d8ca757471085159ac9d (diff)
downloademacs-2d914448d5347cf3ad709d538b949f34f529407a.tar.gz
emacs-2d914448d5347cf3ad709d538b949f34f529407a.zip
(minibuffer-local-map): Bind C-tab here; moved from filecache.el.
-rw-r--r--lisp/bindings.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/bindings.el b/lisp/bindings.el
index 3c7237a52fa..27d8cc62606 100644
--- a/lisp/bindings.el
+++ b/lisp/bindings.el
@@ -680,7 +680,8 @@ language you are using."
680 ;; Override the global binding (which calls indent-relative via 680 ;; Override the global binding (which calls indent-relative via
681 ;; indent-for-tab-command). The alignment that indent-relative tries to 681 ;; indent-for-tab-command). The alignment that indent-relative tries to
682 ;; do doesn't make much sense here since the prompt messes it up. 682 ;; do doesn't make much sense here since the prompt messes it up.
683 (define-key map "\t" 'self-insert-command)) 683 (define-key map "\t" 'self-insert-command)
684 (define-key minibuffer-local-map [C-tab] 'file-cache-minibuffer-complete))
684 685
685(define-key global-map "\C-u" 'universal-argument) 686(define-key global-map "\C-u" 'universal-argument)
686(let ((i ?0)) 687(let ((i ?0))