diff options
author | Robert Pluim <rpluim@gmail.com> | 2022-08-02 14:20:42 +0200 |
---|---|---|
committer | Robert Pluim <rpluim@gmail.com> | 2022-08-02 14:29:43 +0200 |
commit | e5e840168c039f3daf9cce05e0b8ac4c49a450ec (patch) | |
tree | 2d1f05db130078dd2c586fe9d06d33376bf54476 | |
parent | 74ff6acdd36bd005fd2b5585768122ef15d047ed (diff) | |
download | emacs-e5e840168c039f3daf9cce05e0b8ac4c49a450ec.tar.gz emacs-e5e840168c039f3daf9cce05e0b8ac4c49a450ec.tar.bz2 emacs-e5e840168c039f3daf9cce05e0b8ac4c49a450ec.zip |
Remove duplicate key definitions from keymaps
* lisp/gnus/gnus-srvr.el (gnus-browse-mode-map): Remove binding for
'gnus-browse-prev-map'.
* lisp/gnus/gnus-sum.el (gnus-summary-mode-map): Remove
'gnus-summary-down-thread' binding, and by symmetry
'gnus-summary-up-thread' (it's still available on "T-u").
* lisp/ibuffer.el (ibuffer-mode-map): Remove binding for
'ibuffer-mark-for-delete'.
* lisp/wdired.el (wdired-perm-mode-map): Remove duplicate binding of
"s" to 'wdired-set-bit'.
* etc/NEWS: Announce 'gnus-summary-up-thread' change.
-rw-r--r-- | etc/NEWS | 6 | ||||
-rw-r--r-- | lisp/gnus/gnus-srvr.el | 1 | ||||
-rw-r--r-- | lisp/gnus/gnus-sum.el | 2 | ||||
-rw-r--r-- | lisp/ibuffer.el | 1 | ||||
-rw-r--r-- | lisp/wdired.el | 1 |
5 files changed, 6 insertions, 5 deletions
@@ -1645,6 +1645,12 @@ well as the icons used), and the "Gnome" tool bars are now the only pre-defined toolbars. --- +*** 'gnus-summary-up-thread' and 'gnus-summary-down-thread' bindings removed. +The 'gnus-summary-down-thread' binding to "M-C-d" was shadowed by +'gnus-summary-read-document', and these commands are also available on +"T-u" and "T-d" respectively. + +--- *** Gnus now uses a variable-pitch font in the headers by default. To get the monospace font back, you can put something like the following in your ".gnus" file: diff --git a/lisp/gnus/gnus-srvr.el b/lisp/gnus/gnus-srvr.el index a520bfcd8b1..54be0f8e6a0 100644 --- a/lisp/gnus/gnus-srvr.el +++ b/lisp/gnus/gnus-srvr.el @@ -699,7 +699,6 @@ claim them." "n" #'gnus-browse-next-group "p" #'gnus-browse-prev-group "DEL" #'gnus-browse-prev-group - "<delete>" #'gnus-browse-prev-group "N" #'gnus-browse-next-group "P" #'gnus-browse-prev-group "M-n" #'gnus-browse-next-group diff --git a/lisp/gnus/gnus-sum.el b/lisp/gnus/gnus-sum.el index bf2a083fec0..90b57695c57 100644 --- a/lisp/gnus/gnus-sum.el +++ b/lisp/gnus/gnus-sum.el @@ -1958,8 +1958,6 @@ increase the score of each group you read." "C-M-b" #'gnus-summary-prev-thread "M-<down>" #'gnus-summary-next-thread "M-<up>" #'gnus-summary-prev-thread - "C-M-u" #'gnus-summary-up-thread - "C-M-d" #'gnus-summary-down-thread "&" #'gnus-summary-execute-command "c" #'gnus-summary-catchup-and-exit "C-w" #'gnus-summary-mark-region-as-read diff --git a/lisp/ibuffer.el b/lisp/ibuffer.el index 742d21d0b0f..65430d7d11a 100644 --- a/lisp/ibuffer.el +++ b/lisp/ibuffer.el @@ -447,7 +447,6 @@ directory, like `default-directory'." "d" #'ibuffer-mark-for-delete "C-d" #'ibuffer-mark-for-delete-backwards - "k" #'ibuffer-mark-for-delete "x" #'ibuffer-do-kill-on-deletion-marks ;; immediate operations diff --git a/lisp/wdired.el b/lisp/wdired.el index a5858ed190e..106d57174d5 100644 --- a/lisp/wdired.el +++ b/lisp/wdired.el @@ -902,7 +902,6 @@ Like original function but it skips read-only words." "x" #'wdired-set-bit "-" #'wdired-set-bit "S" #'wdired-set-bit - "s" #'wdired-set-bit "T" #'wdired-set-bit "t" #'wdired-set-bit "s" #'wdired-set-bit |