diff options
author | Alex Bochannek <alex@bochannek.com> | 2021-06-08 13:34:24 +0200 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2021-06-08 13:34:24 +0200 |
commit | 4888addd3061c2034ce0ef8bfdb2ce879fb355b0 (patch) | |
tree | 92aef152ea91fb4203dee1b4302cae3185382146 /lisp/gnus | |
parent | 0d42c92978491588a3ad67ec59a5e105e8f1ab3a (diff) | |
download | emacs-4888addd3061c2034ce0ef8bfdb2ce879fb355b0.tar.gz |
Change the Gnus default to use `#' to toggle the process mark
* doc/misc/gnus.texi (Marking Groups, Topic Commands):
(Setting Process Marks, Pick and Read): Document the new default.
* lisp/gnus/gnus-group.el (gnus-group-make-menu-bar): Update menu.
* lisp/gnus/gnus-sum.el (gnus-summary-make-menu-bar): Update menu.
* lisp/gnus/gnus-topic.el (gnus-topic-make-menu-bar): Update menu.
* lisp/gnus/gnus.el (gnus-process-mark-toggle): Change default.
Diffstat (limited to 'lisp/gnus')
-rw-r--r-- | lisp/gnus/gnus-group.el | 2 | ||||
-rw-r--r-- | lisp/gnus/gnus-sum.el | 2 | ||||
-rw-r--r-- | lisp/gnus/gnus-topic.el | 2 | ||||
-rw-r--r-- | lisp/gnus/gnus.el | 4 |
4 files changed, 5 insertions, 5 deletions
diff --git a/lisp/gnus/gnus-group.el b/lisp/gnus/gnus-group.el index 06d1313d379..c8b95d91856 100644 --- a/lisp/gnus/gnus-group.el +++ b/lisp/gnus/gnus-group.el @@ -894,7 +894,7 @@ simple manner." ["Sort by real name" gnus-group-sort-selected-groups-by-real-name (not (gnus-topic-mode-p))]) ("Mark" - ["Set/Toggle mark" gnus-group-mark-group + ["Toggle/Set mark" gnus-group-mark-group (and (gnus-group-group-name) (not (memq (gnus-group-group-name) gnus-group-marked)))] ["Remove mark" gnus-group-unmark-group diff --git a/lisp/gnus/gnus-sum.el b/lisp/gnus/gnus-sum.el index 3279c3221ea..bcd76dda29f 100644 --- a/lisp/gnus/gnus-sum.el +++ b/lisp/gnus/gnus-sum.el @@ -2774,7 +2774,7 @@ gnus-summary-show-article-from-menu-as-charset-%s" cs)))) ["Hide marked" gnus-summary-limit-exclude-marks t] ["Show expunged" gnus-summary-limit-include-expunged t]) ("Process Mark" - ["Set/Toggle mark" gnus-summary-mark-as-processable t] + ["Toggle/Set mark" gnus-summary-mark-as-processable t] ["Remove mark" gnus-summary-unmark-as-processable t] ["Remove all marks" gnus-summary-unmark-all-processable t] ["Invert marks" gnus-uu-invert-processable t] diff --git a/lisp/gnus/gnus-topic.el b/lisp/gnus/gnus-topic.el index c0484622f40..b974dff372b 100644 --- a/lisp/gnus/gnus-topic.el +++ b/lisp/gnus/gnus-topic.el @@ -1112,7 +1112,7 @@ articles in the topic and its subtopics." ["Delete" gnus-topic-delete t] ["Rename..." gnus-topic-rename t] ["Create..." gnus-topic-create-topic t] - ["Set/Toggle mark" gnus-topic-mark-topic t] + ["Toggle/Set mark" gnus-topic-mark-topic t] ["Indent" gnus-topic-indent t] ["Sort" gnus-topic-sort-topics t] ["Previous topic" gnus-topic-goto-previous-topic t] diff --git a/lisp/gnus/gnus.el b/lisp/gnus/gnus.el index 21b5f31c141..7dde799a5b8 100644 --- a/lisp/gnus/gnus.el +++ b/lisp/gnus/gnus.el @@ -1183,8 +1183,8 @@ newsgroups." :group 'gnus-summary-marks :type 'character) -(defcustom gnus-process-mark-toggle nil - "If non-nil the process mark command toggles the process mark." +(defcustom gnus-process-mark-toggle t + "If nil the process mark command only sets the process mark." :version "28.1" :group 'gnus-summary :group 'gnus-group-various |