diff options
| author | Alan Mackenzie | 2022-01-22 11:02:50 +0000 |
|---|---|---|
| committer | Alan Mackenzie | 2022-01-22 11:02:50 +0000 |
| commit | 14d64a8adcc866deecd758b898e8ef2d836b354a (patch) | |
| tree | 83cff9669e266f8e283ccb8cd7518e909240f1e1 /doc/misc | |
| parent | bdd9b5b8a0d37dd09ee530c1dab3a44bee09e0f8 (diff) | |
| parent | ebe334cdc234de2897263aed4c05ac7088c11857 (diff) | |
| download | emacs-scratch/correct-warning-pos.tar.gz emacs-scratch/correct-warning-pos.zip | |
Merge branch 'master' into scratch/correct-warning-posscratch/correct-warning-pos
Diffstat (limited to 'doc/misc')
| -rw-r--r-- | doc/misc/ert.texi | 5 | ||||
| -rw-r--r-- | doc/misc/eshell.texi | 13 | ||||
| -rw-r--r-- | doc/misc/gnus.texi | 17 |
3 files changed, 24 insertions, 11 deletions
diff --git a/doc/misc/ert.texi b/doc/misc/ert.texi index 0d01efb0355..91288db45a2 100644 --- a/doc/misc/ert.texi +++ b/doc/misc/ert.texi | |||
| @@ -444,8 +444,9 @@ emacs -batch -l ert -l my-tests.el \ | |||
| 444 | @vindex EMACS_TEST_VERBOSE@r{, environment variable} | 444 | @vindex EMACS_TEST_VERBOSE@r{, environment variable} |
| 445 | By default, ERT test failure summaries are quite brief in batch | 445 | By default, ERT test failure summaries are quite brief in batch |
| 446 | mode---only the names of the failed tests are listed. If the | 446 | mode---only the names of the failed tests are listed. If the |
| 447 | @env{EMACS_TEST_VERBOSE} environment variable is set, the failure | 447 | @env{EMACS_TEST_VERBOSE} environment variable is set and is non-empty, |
| 448 | summaries will also include the data from the failing test. | 448 | the failure summaries will also include the data from the failing |
| 449 | test. | ||
| 449 | 450 | ||
| 450 | @vindex EMACS_TEST_JUNIT_REPORT@r{, environment variable} | 451 | @vindex EMACS_TEST_JUNIT_REPORT@r{, environment variable} |
| 451 | ERT can produce JUnit test reports in batch mode. If the environment | 452 | ERT can produce JUnit test reports in batch mode. If the environment |
diff --git a/doc/misc/eshell.texi b/doc/misc/eshell.texi index f1d7c638056..df6e3b861e4 100644 --- a/doc/misc/eshell.texi +++ b/doc/misc/eshell.texi | |||
| @@ -407,9 +407,16 @@ Summarize disk usage for each file. | |||
| 407 | 407 | ||
| 408 | @item echo | 408 | @item echo |
| 409 | @cmindex echo | 409 | @cmindex echo |
| 410 | Echoes its input. If @code{eshell-plain-echo-behavior} is | 410 | Echoes its input. By default, this prints in a Lisp-friendly fashion |
| 411 | non-@code{nil}, @command{echo} will try to behave more like a plain | 411 | (so that the value is useful to a Lisp command using the result of |
| 412 | shell's @command{echo}. | 412 | @command{echo} as an argument). If a single argument is passed, |
| 413 | @command{echo} prints that; if multiple arguments are passed, it | ||
| 414 | prints a list of all the arguments; otherwise, it prints the empty | ||
| 415 | string. | ||
| 416 | |||
| 417 | If @code{eshell-plain-echo-behavior} is non-@code{nil}, @command{echo} | ||
| 418 | will try to behave more like a plain shell's @command{echo}, printing | ||
| 419 | each argument as a string, separated by a space. | ||
| 413 | 420 | ||
| 414 | @item env | 421 | @item env |
| 415 | @cmindex env | 422 | @cmindex env |
diff --git a/doc/misc/gnus.texi b/doc/misc/gnus.texi index b3efdfbacba..306d66de64e 100644 --- a/doc/misc/gnus.texi +++ b/doc/misc/gnus.texi | |||
| @@ -14838,12 +14838,17 @@ mail belongs in that group. | |||
| 14838 | The last of these groups should always be a general one, and the regular | 14838 | The last of these groups should always be a general one, and the regular |
| 14839 | expression should @emph{always} be @samp{""} so that it matches any mails | 14839 | expression should @emph{always} be @samp{""} so that it matches any mails |
| 14840 | that haven't been matched by any of the other regexps. (These rules are | 14840 | that haven't been matched by any of the other regexps. (These rules are |
| 14841 | processed from the beginning of the alist toward the end. The first rule | 14841 | processed from the beginning of the alist toward the end. |
| 14842 | to make a match will ``win'', unless you have crossposting enabled. In | 14842 | |
| 14843 | that case, all matching rules will ``win''.) If no rule matched, the mail | 14843 | If multiple rules match (excluding the general @samp{""} group), mail |
| 14844 | will end up in the @samp{bogus} group. When new groups are created by | 14844 | is crossposted to all these groups. However, if |
| 14845 | splitting mail, you may want to run @code{gnus-group-find-new-groups} to | 14845 | @code{nnmail-crosspost} is set to @code{nil}, the first rule to make a |
| 14846 | see the new groups. This also applies to the @samp{bogus} group. | 14846 | match will ``win''. |
| 14847 | |||
| 14848 | If no rule matched, the mail will end up in the @samp{bogus} group. | ||
| 14849 | When new groups are created by splitting mail, you may want to run | ||
| 14850 | @code{gnus-group-find-new-groups} to see the new groups. This also | ||
| 14851 | applies to the @samp{bogus} group. | ||
| 14847 | 14852 | ||
| 14848 | If you like to tinker with this yourself, you can set this variable to a | 14853 | If you like to tinker with this yourself, you can set this variable to a |
| 14849 | function of your choice. This function will be called without any | 14854 | function of your choice. This function will be called without any |