mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-15 10:30:25 -08:00
Shorten over-wide docstrings in defcustoms
* lisp/calc/calc.el (calc-embedded-announce-formula-alist) (calc-embedded-open-formula, calc-embedded-close-formula) (calc-matrix-mode): * lisp/cedet/semantic/imenu.el (semantic-imenu-sort-bucket-function): * lisp/emacs-lisp/find-func.el (find-feature-regexp): * lisp/emulation/cua-base.el (cua-paste-pop-rotate-temporarily): * lisp/emulation/viper-init.el (viper-fast-keyseq-timeout) (viper-related-files-and-buffers-ring): * lisp/emulation/viper-keym.el (viper-want-ctl-h-help): * lisp/gnus/gnus-art.el (gnus-article-banner-alist): * lisp/gnus/gnus-group.el (gnus-keep-same-level): * lisp/gnus/gnus-score.el (gnus-adaptive-word-length-limit): * lisp/gnus/gnus-sum.el (gnus-inhibit-user-auto-expire): * lisp/gnus/gnus-uu.el (gnus-uu-ignore-files-by-type) (gnus-uu-do-not-unpack-archives) (gnus-uu-unmark-articles-not-decoded) (gnus-uu-correct-stripped-uucode, gnus-uu-save-in-digest) (gnus-uu-post-include-before-composing): * lisp/gnus/gnus.el (gnus-use-long-file-name) (gnus-install-group-spam-parameters): * lisp/gnus/message.el (message-cite-style): * lisp/gnus/nnmail.el (nnmail-split-fancy-with-parent-ignore-groups) (nnmail-cache-ignore-groups): * lisp/ido.el (ido-rewrite-file-prompt-functions): * lisp/mail/feedmail.el (feedmail-fiddle-plex-user-list) (feedmail-spray-address-fiddle-plex-list): * lisp/mh-e/mh-e.el (mh-annotate-msg-hook): * lisp/net/imap.el (imap-process-connection-type): * lisp/net/rcirc.el (rcirc-omit-threshold): * lisp/net/tramp-sh.el (tramp-copy-size-limit): * lisp/nxml/nxml-mode.el (nxml-default-buffer-file-coding-system): * lisp/obsolete/landmark.el (landmark-max-stall-time): * lisp/obsolete/tls.el (tls-checktrust): * lisp/org/org-indent.el (org-indent-mode-turns-off-org-adapt-indentation) (org-indent-mode-turns-on-hiding-stars): * lisp/org/org-protocol.el (org-protocol-project-alist): * lisp/progmodes/cc-vars.el (c-doc-comment-style): * lisp/progmodes/cperl-mode.el (cperl-indent-subs-specially): * lisp/progmodes/flymake-proc.el (flymake-proc-allowed-file-name-masks): * lisp/progmodes/hideif.el (hide-ifdef-expand-reinclusion-protection): * lisp/simple.el (minibuffer-history-case-insensitive-variables): * lisp/tab-bar.el (tab-bar-close-last-tab-choice): * lisp/textmodes/reftex-vars.el (reftex-special-environment-functions): * lisp/vc/ediff-init.el (ediff-startup-hook, ediff-cleanup-hook) (ediff-metachars): * lisp/vc/ediff-merg.el (ediff-show-clashes-only): * lisp/vc/ediff-mult.el (ediff-default-filtering-regexp): Shorten doc strings to not exceed 80-column limits. (Bug#44858)
This commit is contained in:
parent
4c7df434a0
commit
5ab5c38987
35 changed files with 97 additions and 72 deletions
|
|
@ -289,7 +289,9 @@ asynchronously. The compressed face will be piped to this command."
|
|||
(defcustom gnus-article-banner-alist nil
|
||||
"Banner alist for stripping.
|
||||
For example,
|
||||
((egroups . \"^[ \\t\\n]*-------------------+\\\\( \\\\(e\\\\|Yahoo! \\\\)Groups Sponsor -+\\\\)?....\\n\\\\(.+\\n\\\\)+\"))"
|
||||
((egroups . (concat \"^[ \\t\\n]*-------------------+\\\\\"
|
||||
\"( \\\\(e\\\\|Yahoo! \\\\)Groups Sponsor -+\\\\)?\"
|
||||
\"....\\n\\\\(.+\\n\\\\)+\")))"
|
||||
:version "21.1"
|
||||
:type '(repeat (cons symbol regexp))
|
||||
:group 'gnus-article-washing)
|
||||
|
|
|
|||
|
|
@ -60,7 +60,7 @@
|
|||
:type 'string)
|
||||
|
||||
(defcustom gnus-keep-same-level nil
|
||||
"Non-nil means that the next newsgroup after the current will be on the same level.
|
||||
"Non-nil means that the newsgroup after this one will be on the same level.
|
||||
When you type, for instance, `n' after reading the last article in the
|
||||
current newsgroup, you will go to the next newsgroup. If this variable
|
||||
is nil, the next newsgroup will be the next from the group
|
||||
|
|
|
|||
|
|
@ -248,7 +248,7 @@ If you use score decays, you might want to set values higher than
|
|||
(integer :tag "Score"))))))
|
||||
|
||||
(defcustom gnus-adaptive-word-length-limit nil
|
||||
"Words of a length lesser than this limit will be ignored when doing adaptive scoring."
|
||||
"Words shorter than this limit will be ignored when doing adaptive scoring."
|
||||
:version "22.1"
|
||||
:group 'gnus-score-adapt
|
||||
:type '(radio (const :format "Unlimited " nil)
|
||||
|
|
|
|||
|
|
@ -744,7 +744,8 @@ string with the suggested prefix."
|
|||
:type '(repeat character))
|
||||
|
||||
(defcustom gnus-inhibit-user-auto-expire t
|
||||
"If non-nil, user marking commands will not mark an article as expirable, even if the group has auto-expire turned on."
|
||||
"If non-nil, user marking commands will not mark an article as expirable.
|
||||
This is true even if the group has auto-expire turned on."
|
||||
:version "21.1"
|
||||
:group 'gnus-summary
|
||||
:type 'boolean)
|
||||
|
|
|
|||
|
|
@ -162,7 +162,7 @@ Note that this variable can be used in conjunction with the
|
|||
(regexp :format "%v")))
|
||||
|
||||
(defcustom gnus-uu-ignore-files-by-type nil
|
||||
"A regular expression saying what files that shouldn't be viewed, based on MIME file type.
|
||||
"Regexp matching files that shouldn't be viewed, based on MIME file type.
|
||||
If, for instance, you want gnus-uu to ignore all audio files and all mpegs,
|
||||
you could say something like
|
||||
|
||||
|
|
@ -224,7 +224,7 @@ Default is \"/tmp/\"."
|
|||
:type 'directory)
|
||||
|
||||
(defcustom gnus-uu-do-not-unpack-archives nil
|
||||
"Non-nil means that gnus-uu won't peek inside archives looking for files to display.
|
||||
"If non-nil, gnus-uu won't peek inside archives looking for files to display.
|
||||
Default is nil."
|
||||
:group 'gnus-extract-archive
|
||||
:type 'boolean)
|
||||
|
|
@ -265,19 +265,19 @@ it nil."
|
|||
:type 'boolean)
|
||||
|
||||
(defcustom gnus-uu-unmark-articles-not-decoded nil
|
||||
"Non-nil means that gnus-uu will mark articles that were unsuccessfully decoded as unread.
|
||||
"If non-nil, gnus-uu will mark unsuccessfully decoded articles as unread.
|
||||
Default is nil."
|
||||
:group 'gnus-extract
|
||||
:type 'boolean)
|
||||
|
||||
(defcustom gnus-uu-correct-stripped-uucode nil
|
||||
"Non-nil means that gnus-uu will *try* to fix uuencoded files that have had trailing spaces deleted.
|
||||
"If non-nil, *try* to fix uuencoded files that have had trailing spaces deleted.
|
||||
Default is nil."
|
||||
:group 'gnus-extract
|
||||
:type 'boolean)
|
||||
|
||||
(defcustom gnus-uu-save-in-digest nil
|
||||
"Non-nil means that gnus-uu, when asked to save without decoding, will save in digests.
|
||||
"If non-nil, gnus-uu, when asked to save without decoding, will save in digests.
|
||||
If this variable is nil, gnus-uu will just save everything in a
|
||||
file without any embellishments. The digesting almost conforms to RFC1153 -
|
||||
no easy way to specify any meaningful volume and issue numbers were found,
|
||||
|
|
@ -1858,7 +1858,7 @@ uuencode and adds MIME headers."
|
|||
(function :tag "Other")))
|
||||
|
||||
(defcustom gnus-uu-post-include-before-composing nil
|
||||
"Non-nil means that gnus-uu will ask for a file to encode before you compose the article.
|
||||
"If non-nil, gnus-uu asks for a file to encode before you compose the article.
|
||||
If this variable is t, you can either include an encoded file with
|
||||
\\[gnus-uu-post-insert-binary-in-article] or have one included for you when you post the article."
|
||||
:group 'gnus-extract-post
|
||||
|
|
|
|||
|
|
@ -1195,7 +1195,7 @@ Also see `gnus-large-ephemeral-newsgroup'."
|
|||
integer))
|
||||
|
||||
(defcustom gnus-use-long-file-name (not (memq system-type '(usg-unix-v)))
|
||||
"Non-nil means that the default name of a file to save articles in is the group name.
|
||||
"Non-nil means that the default file name to save articles in is the group name.
|
||||
If it's nil, the directory form of the group name is used instead.
|
||||
|
||||
If this variable is a list, and the list contains the element
|
||||
|
|
@ -1618,7 +1618,8 @@ total number of articles in the group.")
|
|||
;; group parameters for spam processing added by Ted Zlatanov <tzz@lifelogs.com>
|
||||
(defcustom gnus-install-group-spam-parameters t
|
||||
"Disable the group parameters for spam detection.
|
||||
Enable if `G c' in XEmacs is giving you trouble, and make sure to submit a bug report."
|
||||
Enable if `G c' in XEmacs is giving you trouble, and make sure to
|
||||
submit a bug report."
|
||||
:version "22.1"
|
||||
:type 'boolean
|
||||
:group 'gnus-start)
|
||||
|
|
|
|||
|
|
@ -1172,7 +1172,8 @@ Presets to impersonate popular mail agents are found in the
|
|||
message-cite-style-* variables. This variable is intended for
|
||||
use in `gnus-posting-styles', such as:
|
||||
|
||||
((posting-from-work-p) (eval (setq-local message-cite-style message-cite-style-outlook)))"
|
||||
((posting-from-work-p) (eval (setq-local message-cite-style
|
||||
message-cite-style-outlook)))"
|
||||
:version "24.1"
|
||||
:group 'message-insertion
|
||||
:type '(choice (const :tag "Do not override variables" :value nil)
|
||||
|
|
|
|||
|
|
@ -115,7 +115,7 @@ If nil, the first match found will be used."
|
|||
:type 'boolean)
|
||||
|
||||
(defcustom nnmail-split-fancy-with-parent-ignore-groups nil
|
||||
"Regexp that matches group names to be ignored when applying `nnmail-split-fancy-with-parent'.
|
||||
"Regexp matching group names ignored by `nnmail-split-fancy-with-parent'.
|
||||
This can also be a list of regexps."
|
||||
:version "22.1"
|
||||
:group 'nnmail-split
|
||||
|
|
@ -124,7 +124,8 @@ This can also be a list of regexps."
|
|||
(repeat :value (".*") regexp)))
|
||||
|
||||
(defcustom nnmail-cache-ignore-groups nil
|
||||
"Regexp that matches group names to be ignored when inserting message ids into the cache (`nnmail-cache-insert').
|
||||
"Regexp matching group ignored when inserting message ids into the cache.
|
||||
This is used by `nnmail-cache-insert'.
|
||||
This can also be a list of regexps."
|
||||
:version "22.1"
|
||||
:group 'nnmail-split
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue