diff options
| author | Gnus developers | 2010-10-31 22:31:24 +0000 |
|---|---|---|
| committer | Katsumi Yamaoka | 2010-10-31 22:31:24 +0000 |
| commit | 389b76fa1b4e96b7da8896cea16d57403d76a947 (patch) | |
| tree | 43e56629071d13a0817e6fdff598ce806d5ce4d5 /doc | |
| parent | 430e7297cbfe8c2ef14b5b703fc56c4efce439c0 (diff) | |
| download | emacs-389b76fa1b4e96b7da8896cea16d57403d76a947.tar.gz emacs-389b76fa1b4e96b7da8896cea16d57403d76a947.zip | |
Merge changes made in Gnus trunk.
nnimap.el (nnimap-open-connection): Only send AUTHENTICATE PLAIN if LOGINDISABLED is set.
gnus.el (gnus-group-startup-message): Move point to the start of the buffer.
nndoc.el (nndoc-dissect-buffer): Reverse the order of the articles to reflect the order they're in in the digest.
gnus-sum.el (gnus-summary-select-article): Make `C-d' work reliably by checking whether the original article buffer is alive.
shr.el (shr-find-fill-point): Don't break lines between punctuation and non-punctuation (like after the apostrophe in "'We").
gnus-cite.el (gnus-article-fill-cited-article): Remove unused `force' parameter.
gnus-art.el (gnus-treatment-function-alist): Have gnus-treat-fill-long-lines point to gnus-article-fill-cited-long-lines.
gnus-art.el (gnus-treat-fill-long-lines): Change default to fill all text/plain sections.
gnus.el: Autoload gnus-article-fill-cited-long-lines.
gnus-art.el (gnus-mime-display-alternative): Actually pass the type on to `gnus-treat-article'.
gnus-sum.el (gnus-summary-show-article): Add `C-u C-u g' for showing the raw article, and change `C-u g' to show the article without doing treatments.
gnus.texi (Paging the Article): Document C-u g/C-u C-u g.
gnus-cite.el (gnus-article-foldable-buffer): Refactor out.
gnus-cite.el (gnus-article-foldable-buffer): Don't fold regions that have a ragged left edge.
gnus-cite.el (gnus-article-foldable-buffer): Skip past the prefix when determining raggedness.
gnus-srvr.el, nnir.el: Allow nnir searching for an entire server.
gnus-msg.el (gnus-configure-posting-styles): Permit the use of regular expression match and replace in posting styles.
gnus-art.el (gnus-treat-article): Only inhibit body washing, and leave the header washing to take place.
nnimap.el (nnimap-request-accept-article): Erase buffer before appending for easier debugging.
nnimap.el (nnimap-wait-for-connection): Take a regexp.
nnimap.el (nnimap-request-accept-article): Wait for the continuation line before sending anything unless we're streaming.
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/misc/ChangeLog | 4 | ||||
| -rw-r--r-- | doc/misc/gnus.texi | 27 |
2 files changed, 21 insertions, 10 deletions
diff --git a/doc/misc/ChangeLog b/doc/misc/ChangeLog index d5c5df92087..5e99132389e 100644 --- a/doc/misc/ChangeLog +++ b/doc/misc/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2010-10-31 Lars Magne Ingebrigtsen <larsi@gnus.org> | ||
| 2 | |||
| 3 | * gnus.texi (Paging the Article): Document C-u g/C-u C-u g. | ||
| 4 | |||
| 1 | 2010-10-31 Glenn Morris <rgm@gnu.org> | 5 | 2010-10-31 Glenn Morris <rgm@gnu.org> |
| 2 | 6 | ||
| 3 | * mh-e.texi (Preface, From Bill Wohler): Change 23 to past tense. | 7 | * mh-e.texi (Preface, From Bill Wohler): Change 23 to past tense. |
diff --git a/doc/misc/gnus.texi b/doc/misc/gnus.texi index dd3e07ef3cc..c3dd2b31a50 100644 --- a/doc/misc/gnus.texi +++ b/doc/misc/gnus.texi | |||
| @@ -6153,8 +6153,9 @@ Scroll the current article one line backward | |||
| 6153 | @vindex gnus-summary-show-article-charset-alist | 6153 | @vindex gnus-summary-show-article-charset-alist |
| 6154 | (Re)fetch the current article (@code{gnus-summary-show-article}). If | 6154 | (Re)fetch the current article (@code{gnus-summary-show-article}). If |
| 6155 | given a prefix, fetch the current article, but don't run any of the | 6155 | given a prefix, fetch the current article, but don't run any of the |
| 6156 | article treatment functions. This will give you a ``raw'' article, just | 6156 | article treatment functions. If given a prefix twice (i.e., @kbd{C-u |
| 6157 | the way it came from the server. | 6157 | C-u g'}), show a completely ``raw'' article, just the way it came from |
| 6158 | the server. | ||
| 6158 | 6159 | ||
| 6159 | @cindex charset, view article with different charset | 6160 | @cindex charset, view article with different charset |
| 6160 | If given a numerical prefix, you can do semi-manual charset stuff. | 6161 | If given a numerical prefix, you can do semi-manual charset stuff. |
| @@ -13428,14 +13429,20 @@ the headers of the article; if the value is @code{nil}, the header | |||
| 13428 | name will be removed. If the attribute name is @code{eval}, the form | 13429 | name will be removed. If the attribute name is @code{eval}, the form |
| 13429 | is evaluated, and the result is thrown away. | 13430 | is evaluated, and the result is thrown away. |
| 13430 | 13431 | ||
| 13431 | The attribute value can be a string (used verbatim), a function with | 13432 | The attribute value can be a string, a function with zero arguments |
| 13432 | zero arguments (the return value will be used), a variable (its value | 13433 | (the return value will be used), a variable (its value will be used) |
| 13433 | will be used) or a list (it will be @code{eval}ed and the return value | 13434 | or a list (it will be @code{eval}ed and the return value will be |
| 13434 | will be used). The functions and sexps are called/@code{eval}ed in the | 13435 | used). The functions and sexps are called/@code{eval}ed in the |
| 13435 | message buffer that is being set up. The headers of the current article | 13436 | message buffer that is being set up. The headers of the current |
| 13436 | are available through the @code{message-reply-headers} variable, which | 13437 | article are available through the @code{message-reply-headers} |
| 13437 | is a vector of the following headers: number subject from date id | 13438 | variable, which is a vector of the following headers: number subject |
| 13438 | references chars lines xref extra. | 13439 | from date id references chars lines xref extra. |
| 13440 | |||
| 13441 | In the case of a string value, if the @code{match} is a regular | ||
| 13442 | expression, a @samp{gnus-match-substitute-replacement} is proceed on | ||
| 13443 | the value to replace the positional parameters @samp{\@var{n}} by the | ||
| 13444 | corresponding parenthetical matches (see @xref{Replacing the Text that | ||
| 13445 | Matched, , Text Replacement, elisp, The Emacs Lisp Reference Manual}.) | ||
| 13439 | 13446 | ||
| 13440 | @vindex message-reply-headers | 13447 | @vindex message-reply-headers |
| 13441 | 13448 | ||