From: Stephen Eglen Date: Sun, 15 Jan 2006 23:43:41 +0000 (+0000) Subject: (iswitchb-define-mode-map): Use C-n for iswitchb-toggle-ignore. (This X-Git-Tag: emacs-pretest-22.0.90~4739 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=5311aad2e578f3957df0f7379bd4cce492ffa2be;p=emacs.git (iswitchb-define-mode-map): Use C-n for iswitchb-toggle-ignore. (This was C-a but a user suggested this was too easily confused with normal usage of C-a.) --- diff --git a/lisp/iswitchb.el b/lisp/iswitchb.el index 3ba0beeeb0c..3fd03cf5d0a 100644 --- a/lisp/iswitchb.el +++ b/lisp/iswitchb.el @@ -559,7 +559,7 @@ variable `iswitchb-mode'." (define-key map "\C-j" 'iswitchb-select-buffer-text) (define-key map "\C-t" 'iswitchb-toggle-regexp) (define-key map "\C-x\C-f" 'iswitchb-find-file) - (define-key map "\C-a" 'iswitchb-toggle-ignore) + (define-key map "\C-n" 'iswitchb-toggle-ignore) (define-key map "\C-c" 'iswitchb-toggle-case) (define-key map "\C-k" 'iswitchb-kill-buffer) (define-key map "\C-m" 'iswitchb-exit-minibuffer)