emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] /srv/bzr/emacs/trunk r104952: * bindings.el: Ignore next-b


From: Chong Yidong
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r104952: * bindings.el: Ignore next-buffer and previous-buffer in minibuffer-local-map.
Date: Mon, 04 Jul 2011 16:45:22 -0400
User-agent: Bazaar (2.3.1)

------------------------------------------------------------
revno: 104952
committer: Chong Yidong <address@hidden>
branch nick: trunk
timestamp: Mon 2011-07-04 16:45:22 -0400
message:
  * bindings.el: Ignore next-buffer and previous-buffer in minibuffer-local-map.
modified:
  lisp/ChangeLog
  lisp/bindings.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2011-07-04 20:08:02 +0000
+++ b/lisp/ChangeLog    2011-07-04 20:45:22 +0000
@@ -5,6 +5,9 @@
 
 2011-07-04  Chong Yidong  <address@hidden>
 
+       * 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).
 

=== modified file 'lisp/bindings.el'
--- a/lisp/bindings.el  2011-06-11 09:50:37 +0000
+++ b/lisp/bindings.el  2011-07-04 20:45:22 +0000
@@ -806,6 +806,8 @@
   (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.


reply via email to

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