summaryrefslogtreecommitdiff
path: root/lisp/gnus/nnvirtual.el
diff options
context:
space:
mode:
authorEli Zaretskii <eliz@gnu.org>2020-12-19 13:18:11 +0200
committerEli Zaretskii <eliz@gnu.org>2020-12-19 13:18:11 +0200
commit64d97212f42bc0305560a0ae2cc2f16a3a851117 (patch)
tree70aa3c5aec0e2a621e0b110e7813b47ce93881d8 /lisp/gnus/nnvirtual.el
parent9f7e0a3e7d33d79f7f0319cd0fc64920988b0039 (diff)
downloademacs-64d97212f42bc0305560a0ae2cc2f16a3a851117.tar.gz
emacs-64d97212f42bc0305560a0ae2cc2f16a3a851117.tar.bz2
emacs-64d97212f42bc0305560a0ae2cc2f16a3a851117.zip
Fix over-wide doc strings
* lisp/vc/ediff-init.el (ediff-before-flag-bol) (ediff-after-flag-eol, ediff-before-flag-mol): * lisp/org/org-ctags.el (org-ctags-open-link-functions): * lisp/mail/feedmail.el (feedmail-sendmail-f-doesnt-sell-me-out): * lisp/language/ethio-util.el (ethio-use-three-dot-question) (ethio-quote-vowel-always, ethio-W-sixth-always): * lisp/gnus/nnvirtual.el (nnvirtual-mapping-table) (nnvirtual-mapping-offsets, nnvirtual-mapping-reads) (nnvirtual-mapping-marks, nnvirtual-info-installed): * lisp/gnus/gnus.el (charset): * lisp/gnus/deuglify.el (gnus-outlook-deuglify-unwrap-stop-chars) (gnus-outlook-deuglify-no-wrap-chars) (gnus-outlook-deuglify-attrib-cut-regexp): Fix doc strings to not exceed 80-column limits. (Bug#44858)
Diffstat (limited to 'lisp/gnus/nnvirtual.el')
-rw-r--r--lisp/gnus/nnvirtual.el15
1 files changed, 10 insertions, 5 deletions
diff --git a/lisp/gnus/nnvirtual.el b/lisp/gnus/nnvirtual.el
index 54c2f7be820..3e9e608a099 100644
--- a/lisp/gnus/nnvirtual.el
+++ b/lisp/gnus/nnvirtual.el
@@ -61,22 +61,27 @@ component group will show up when you enter the virtual group.")
(defvoo nnvirtual-current-group nil)
(defvoo nnvirtual-mapping-table nil
- "Table of rules on how to map between component group and article number to virtual article number.")
+ "Table of rules for mapping groups and articles to virtual article numbers.
+These rules determine how to map between component group and article number
+on the one hand, and virtual article number on the other hand.")
(defvoo nnvirtual-mapping-offsets nil
- "Table indexed by component group to an offset to be applied to article numbers in that group.")
+ "Table of mapping offsets to be applied to article numbers in a group.
+The table is indexed by component group number of the group.")
(defvoo nnvirtual-mapping-len 0
"Number of articles in this virtual group.")
(defvoo nnvirtual-mapping-reads nil
- "Compressed sequence of read articles on the virtual group as computed from the unread status of individual component groups.")
+ "Compressed sequence of read articles on the virtual group.
+It is computed from the unread status of individual component groups.")
(defvoo nnvirtual-mapping-marks nil
- "Compressed marks alist for the virtual group as computed from the marks of individual component groups.")
+ "Compressed marks alist for the virtual group.
+It is computed from the marks of individual component groups.")
(defvoo nnvirtual-info-installed nil
- "T if we have already installed the group info for this group, and shouldn't blast over it again.")
+ "t if the group info for this group is already installed.")
(defvoo nnvirtual-status-string "")