diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2021-07-31 23:49:00 +0200 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2021-07-31 23:49:37 +0200 |
commit | 4ca3cf996e4a2c278322091d7d17e7b0d935aa4d (patch) | |
tree | c968af8f885b10c8c92a434ea781afa0b1deeed8 /lisp/gnus/gnus-srvr.el | |
parent | 5f33ad6954656096f53dc1ed2e941db37b5a3fc1 (diff) | |
download | emacs-4ca3cf996e4a2c278322091d7d17e7b0d935aa4d.tar.gz emacs-4ca3cf996e4a2c278322091d7d17e7b0d935aa4d.tar.bz2 emacs-4ca3cf996e4a2c278322091d7d17e7b0d935aa4d.zip |
Fix `u' binding in Gnus Browse mode
* lisp/gnus/gnus-srvr.el (gnus-browse-mode-map): Bind to
`gnus-browse-toggle-subscription-at-point', which is the command.
Diffstat (limited to 'lisp/gnus/gnus-srvr.el')
-rw-r--r-- | lisp/gnus/gnus-srvr.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/gnus/gnus-srvr.el b/lisp/gnus/gnus-srvr.el index b316a2e86f1..1c75abb6f4b 100644 --- a/lisp/gnus/gnus-srvr.el +++ b/lisp/gnus/gnus-srvr.el @@ -716,7 +716,7 @@ claim them." "\M-n" gnus-browse-next-group "\M-p" gnus-browse-prev-group "\r" gnus-browse-select-group - "u" gnus-browse-toggle-subscription + "u" gnus-browse-toggle-subscription-at-point "l" gnus-browse-exit "L" gnus-browse-exit "q" gnus-browse-exit @@ -735,7 +735,7 @@ claim them." (easy-menu-define gnus-browse-menu gnus-browse-mode-map "" '("Browse" - ["Toggle Subscribe" gnus-browse-toggle-subscription t] + ["Toggle Subscribe" gnus-browse-toggle-subscription-at-point t] ["Read" gnus-browse-read-group t] ["Select" gnus-browse-select-group t] ["Describe" gnus-browse-describe-group t] @@ -881,7 +881,7 @@ All normal editing commands are switched off. \\<gnus-browse-mode-map> The only things you can do in this buffer is -1) `\\[gnus-browse-toggle-subscription]' to subscribe or unsubscribe to +1) `\\[gnus-browse-toggle-subscription-at-point]' to subscribe or unsubscribe to a group. The group will be inserted into the group buffer upon exit from this buffer. |