From: Stefan Monnier Date: Sun, 2 Dec 2001 03:47:54 +0000 (+0000) Subject: (minibuffer-local-map): Bind TAB to insert-tab. X-Git-Tag: ttn-vms-21-2-B4~17959 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=f618213e75a49663243932d3647138149e881dea;p=emacs.git (minibuffer-local-map): Bind TAB to insert-tab. --- diff --git a/lisp/bindings.el b/lisp/bindings.el index 1c7915e17ce..f9f01a1dacf 100644 --- a/lisp/bindings.el +++ b/lisp/bindings.el @@ -644,6 +644,7 @@ language you are using." (define-key esc-map "|" 'shell-command-on-region) (let ((map minibuffer-local-map)) + (define-key map "\t" 'insert-tab) (define-key map "\en" 'next-history-element) (define-key map [next] 'next-history-element) (define-key map [down] 'next-history-element)