From d66fef2b4522310bcb7d705d59aaf65a84fdd927 Mon Sep 17 00:00:00 2001 From: Chong Yidong Date: Mon, 4 Jul 2011 16:45:22 -0400 Subject: [PATCH] * bindings.el: Ignore next-buffer and previous-buffer in minibuffer-local-map. --- lisp/ChangeLog | 3 +++ lisp/bindings.el | 2 ++ 2 files changed, 5 insertions(+) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index a3c69ee76d5..278ead6a9b8 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -5,6 +5,9 @@ 2011-07-04 Chong Yidong + * bindings.el: Ignore next-buffer and previous-buffer in + minibuffer-local-map. + * font-lock.el (font-lock-builtin-face): Change light background color to dark slate blue (Bug#6693). diff --git a/lisp/bindings.el b/lisp/bindings.el index a7b729a1ba3..383223dc0d7 100644 --- a/lisp/bindings.el +++ b/lisp/bindings.el @@ -806,6 +806,8 @@ if `inhibit-field-text-motion' is non-nil." (define-key map [up] 'previous-history-element) (define-key map "\es" 'next-matching-history-element) (define-key map "\er" 'previous-matching-history-element) + (define-key map [remap next-buffer] 'ignore) + (define-key map [remap previous-buffer] 'ignore) ;; Override the global binding (which calls indent-relative via ;; indent-for-tab-command). The alignment that indent-relative tries to ;; do doesn't make much sense here since the prompt messes it up. -- 2.39.2