aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/bindings.el6
1 files changed, 5 insertions, 1 deletions
diff --git a/lisp/bindings.el b/lisp/bindings.el
index 722de30280d..5420badde90 100644
--- a/lisp/bindings.el
+++ b/lisp/bindings.el
@@ -674,7 +674,11 @@ language you are using."
674 (define-key map [prior] 'previous-history-element) 674 (define-key map [prior] 'previous-history-element)
675 (define-key map [up] 'previous-history-element) 675 (define-key map [up] 'previous-history-element)
676 (define-key map "\es" 'next-matching-history-element) 676 (define-key map "\es" 'next-matching-history-element)
677 (define-key map "\er" 'previous-matching-history-element)) 677 (define-key map "\er" 'previous-matching-history-element)
678 ;; Override the global binding (which calls indent-relative via
679 ;; indent-for-tab-command). The alignment that indent-relative tries to
680 ;; do doesn't make much sense here since the prompt messes it up.
681 (define-key map "\t" 'self-insert-command))
678 682
679(define-key global-map "\C-u" 'universal-argument) 683(define-key global-map "\C-u" 'universal-argument)
680(let ((i ?0)) 684(let ((i ?0))