diff options
| author | Miles Bader | 2007-08-13 13:41:28 +0000 |
|---|---|---|
| committer | Miles Bader | 2007-08-13 13:41:28 +0000 |
| commit | 37cc095b6a175fb5a2fb18fa029eaf3aa3b3fa53 (patch) | |
| tree | 7fb68e80f66e55100c48b9751cf70c74af2d4bf1 /man | |
| parent | 031b6333283be57d971e557b83da31c6be937b0a (diff) | |
| parent | 9d2db4c6637fe37d75f947063bcb2ecce319a1bc (diff) | |
| download | emacs-37cc095b6a175fb5a2fb18fa029eaf3aa3b3fa53.tar.gz emacs-37cc095b6a175fb5a2fb18fa029eaf3aa3b3fa53.zip | |
Merge from emacs--rel--22
Revision: emacs@sv.gnu.org/emacs--devo--0--patch-851
Diffstat (limited to 'man')
| -rw-r--r-- | man/ChangeLog | 9 | ||||
| -rw-r--r-- | man/glossary.texi | 3 | ||||
| -rw-r--r-- | man/gnus.texi | 42 | ||||
| -rw-r--r-- | man/sieve.texi | 4 |
4 files changed, 48 insertions, 10 deletions
diff --git a/man/ChangeLog b/man/ChangeLog index 1986ce939bc..2395e82fdbb 100644 --- a/man/ChangeLog +++ b/man/ChangeLog | |||
| @@ -1,3 +1,12 @@ | |||
| 1 | 2007-08-10 Katsumi Yamaoka <yamaoka@jpl.org> | ||
| 2 | |||
| 3 | * gnus.texi (NNTP): Mention nntp-xref-number-is-evil. | ||
| 4 | |||
| 5 | 2007-08-08 Glenn Morris <rgm@gnu.org> | ||
| 6 | |||
| 7 | * glossary.texi (Glossary): Deprecate `iff'. | ||
| 8 | * gnus.texi, sieve.texi: Replace `iff'. | ||
| 9 | |||
| 1 | 2007-08-07 Chong Yidong <cyd@stupidchicken.com> | 10 | 2007-08-07 Chong Yidong <cyd@stupidchicken.com> |
| 2 | 11 | ||
| 3 | * files.texi (File Conveniences): Document point motion keys in Image | 12 | * files.texi (File Conveniences): Document point motion keys in Image |
diff --git a/man/glossary.texi b/man/glossary.texi index d082e6ec077..f289c2ca1cb 100644 --- a/man/glossary.texi +++ b/man/glossary.texi | |||
| @@ -603,7 +603,8 @@ Hyper}. | |||
| 603 | 603 | ||
| 604 | @item Iff | 604 | @item Iff |
| 605 | ``Iff'' means ``if and only if.'' This terminology comes from | 605 | ``Iff'' means ``if and only if.'' This terminology comes from |
| 606 | mathematics. | 606 | mathematics. Try to avoid using this term in documentation, since |
| 607 | many are unfamiliar with it and mistake it for a typo. | ||
| 607 | 608 | ||
| 608 | @item Inbox | 609 | @item Inbox |
| 609 | An inbox is a file in which mail is delivered by the operating system. | 610 | An inbox is a file in which mail is delivered by the operating system. |
diff --git a/man/gnus.texi b/man/gnus.texi index fe26aa5f662..94144b65e3f 100644 --- a/man/gnus.texi +++ b/man/gnus.texi | |||
| @@ -12945,6 +12945,34 @@ network is fast, setting this variable to a really small number means | |||
| 12945 | that fetching will probably be slower. If this variable is @code{nil}, | 12945 | that fetching will probably be slower. If this variable is @code{nil}, |
| 12946 | @code{nntp} will never split requests. The default is 5. | 12946 | @code{nntp} will never split requests. The default is 5. |
| 12947 | 12947 | ||
| 12948 | @item nntp-xref-number-is-evil | ||
| 12949 | @vindex nntp-xref-number-is-evil | ||
| 12950 | When Gnus refers to an article having the @code{Message-ID} that a user | ||
| 12951 | specifies or having the @code{Message-ID} of the parent article of the | ||
| 12952 | current one (@pxref{Finding the Parent}), Gnus sends a @code{HEAD} | ||
| 12953 | command to the @acronym{NNTP} server to know where it is, and the server | ||
| 12954 | returns the data containing the pairs of a group and an article number | ||
| 12955 | in the @code{Xref} header. Gnus normally uses the article number to | ||
| 12956 | refer to the article if the data shows that that article is in the | ||
| 12957 | current group, while it uses the @code{Message-ID} otherwise. However, | ||
| 12958 | some news servers, e.g., ones running Diablo, run multiple engines | ||
| 12959 | having the same articles but article numbers are not kept synchronized | ||
| 12960 | between them. In that case, the article number that appears in the | ||
| 12961 | @code{Xref} header varies by which engine is chosen, so you cannot refer | ||
| 12962 | to the parent article that is in the current group, for instance. If | ||
| 12963 | you connect to such a server, set this variable to a non-@code{nil} | ||
| 12964 | value, and Gnus never uses article numbers. For example: | ||
| 12965 | |||
| 12966 | @lisp | ||
| 12967 | (setq gnus-select-method | ||
| 12968 | '(nntp "newszilla" | ||
| 12969 | (nntp-address "newszilla.example.com") | ||
| 12970 | (nntp-xref-number-is-evil t) | ||
| 12971 | @dots{})) | ||
| 12972 | @end lisp | ||
| 12973 | |||
| 12974 | The default value of this server variable is @code{nil}. | ||
| 12975 | |||
| 12948 | @item nntp-prepare-server-hook | 12976 | @item nntp-prepare-server-hook |
| 12949 | @vindex nntp-prepare-server-hook | 12977 | @vindex nntp-prepare-server-hook |
| 12950 | A hook run before attempting to connect to an @acronym{NNTP} server. | 12978 | A hook run before attempting to connect to an @acronym{NNTP} server. |
| @@ -18595,23 +18623,23 @@ predicate to individual groups. | |||
| 18595 | 18623 | ||
| 18596 | @table @code | 18624 | @table @code |
| 18597 | @item short | 18625 | @item short |
| 18598 | True iff the article is shorter than @code{gnus-agent-short-article} | 18626 | True if the article is shorter than @code{gnus-agent-short-article} |
| 18599 | lines; default 100. | 18627 | lines; default 100. |
| 18600 | 18628 | ||
| 18601 | @item long | 18629 | @item long |
| 18602 | True iff the article is longer than @code{gnus-agent-long-article} | 18630 | True if the article is longer than @code{gnus-agent-long-article} |
| 18603 | lines; default 200. | 18631 | lines; default 200. |
| 18604 | 18632 | ||
| 18605 | @item low | 18633 | @item low |
| 18606 | True iff the article has a download score less than | 18634 | True if the article has a download score less than |
| 18607 | @code{gnus-agent-low-score}; default 0. | 18635 | @code{gnus-agent-low-score}; default 0. |
| 18608 | 18636 | ||
| 18609 | @item high | 18637 | @item high |
| 18610 | True iff the article has a download score greater than | 18638 | True if the article has a download score greater than |
| 18611 | @code{gnus-agent-high-score}; default 0. | 18639 | @code{gnus-agent-high-score}; default 0. |
| 18612 | 18640 | ||
| 18613 | @item spam | 18641 | @item spam |
| 18614 | True iff the Gnus Agent guesses that the article is spam. The | 18642 | True if the Gnus Agent guesses that the article is spam. The |
| 18615 | heuristics may change over time, but at present it just computes a | 18643 | heuristics may change over time, but at present it just computes a |
| 18616 | checksum and sees whether articles match. | 18644 | checksum and sees whether articles match. |
| 18617 | 18645 | ||
| @@ -26651,7 +26679,7 @@ New @file{make.bat} for compiling and installing Gnus under MS Windows | |||
| 26651 | 26679 | ||
| 26652 | Use @file{make.bat} if you want to install Gnus under MS Windows, the | 26680 | Use @file{make.bat} if you want to install Gnus under MS Windows, the |
| 26653 | first argument to the batch-program should be the directory where | 26681 | first argument to the batch-program should be the directory where |
| 26654 | @file{xemacs.exe} respectively @file{emacs.exe} is located, iff you want | 26682 | @file{xemacs.exe} respectively @file{emacs.exe} is located, if you want |
| 26655 | to install Gnus after compiling it, give @file{make.bat} @code{/copy} as | 26683 | to install Gnus after compiling it, give @file{make.bat} @code{/copy} as |
| 26656 | the second parameter. | 26684 | the second parameter. |
| 26657 | 26685 | ||
| @@ -27008,7 +27036,7 @@ The envelope sender address can be customized when using Sendmail. | |||
| 27008 | @item | 27036 | @item |
| 27009 | Gnus no longer generate the Sender: header automatically. | 27037 | Gnus no longer generate the Sender: header automatically. |
| 27010 | 27038 | ||
| 27011 | Earlier it was generated iff the user configurable email address was | 27039 | Earlier it was generated when the user configurable email address was |
| 27012 | different from the Gnus guessed default user address. As the guessing | 27040 | different from the Gnus guessed default user address. As the guessing |
| 27013 | algorithm is rarely correct these days, and (more controversially) the | 27041 | algorithm is rarely correct these days, and (more controversially) the |
| 27014 | only use of the Sender: header was to check if you are entitled to | 27042 | only use of the Sender: header was to check if you are entitled to |
diff --git a/man/sieve.texi b/man/sieve.texi index 1030babd593..4b7a95be952 100644 --- a/man/sieve.texi +++ b/man/sieve.texi | |||
| @@ -307,7 +307,7 @@ Authenticate to the server. | |||
| 307 | 307 | ||
| 308 | @item sieve-manage-capability | 308 | @item sieve-manage-capability |
| 309 | @findex sieve-manage-capability | 309 | @findex sieve-manage-capability |
| 310 | Return a list of capabilities the server support. | 310 | Return a list of capabilities the server supports. |
| 311 | 311 | ||
| 312 | @item sieve-manage-listscripts | 312 | @item sieve-manage-listscripts |
| 313 | @findex sieve-manage-listscripts | 313 | @findex sieve-manage-listscripts |
| @@ -315,7 +315,7 @@ List scripts on the server. | |||
| 315 | 315 | ||
| 316 | @item sieve-manage-havespace | 316 | @item sieve-manage-havespace |
| 317 | @findex sieve-manage-havespace | 317 | @findex sieve-manage-havespace |
| 318 | Returns non-@code{nil} iff server have roam for a script of given | 318 | Return non-@code{nil} if the server has room for a script of given |
| 319 | size. | 319 | size. |
| 320 | 320 | ||
| 321 | @item sieve-manage-getscript | 321 | @item sieve-manage-getscript |