<feed xmlns='http://www.w3.org/2005/Atom'>
<title>emacs/lisp/gnus, branch feature/uniquify-as-function</title>
<subtitle>Emacs is the extensible, customizable, self-documenting real-time display editor. 
</subtitle>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/'/>
<entry>
<title>Don't eagerly store articles in the Agent by default</title>
<updated>2020-09-13T14:46:11+00:00</updated>
<author>
<name>Lars Ingebrigtsen</name>
</author>
<published>2020-09-13T14:46:11+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=def34a20766ea5179afd5e5ed090a2b86fcccb5e'/>
<id>def34a20766ea5179afd5e5ed090a2b86fcccb5e</id>
<content type='text'>
* lisp/gnus/gnus-agent.el (gnus-agent-store-article): Made
obsolete.

* lisp/gnus/gnus-art.el (gnus-request-article-this-buffer): Don't
call it.

* lisp/gnus/gnus-async.el (gnus-async-article-callback): Ditto
(bug#43356).

This partially reverts f3b146e943cd733fb716c75048f24b73826e5f30, which
in was response to what appears to be an erroneous feature-request -
bug#8502.

Instead this should be done instead:

“If I read an article while plugged, do they get entered into the
Agent?”

     *No*. If you want this behavior, add
     ‘gnus-agent-fetch-selected-article’ to
     ‘gnus-select-article-hook’.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* lisp/gnus/gnus-agent.el (gnus-agent-store-article): Made
obsolete.

* lisp/gnus/gnus-art.el (gnus-request-article-this-buffer): Don't
call it.

* lisp/gnus/gnus-async.el (gnus-async-article-callback): Ditto
(bug#43356).

This partially reverts f3b146e943cd733fb716c75048f24b73826e5f30, which
in was response to what appears to be an erroneous feature-request -
bug#8502.

Instead this should be done instead:

“If I read an article while plugged, do they get entered into the
Agent?”

     *No*. If you want this behavior, add
     ‘gnus-agent-fetch-selected-article’ to
     ‘gnus-select-article-hook’.
</pre>
</div>
</content>
</entry>
<entry>
<title>Revert "Use format-prompt in read-file-name calls that have a default"</title>
<updated>2020-09-13T12:58:24+00:00</updated>
<author>
<name>Lars Ingebrigtsen</name>
</author>
<published>2020-09-13T12:58:24+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=9ca83cdd79747fb09f714593243060b17b34e039'/>
<id>9ca83cdd79747fb09f714593243060b17b34e039</id>
<content type='text'>
This reverts commit de4f347901adffd07bc9bff028dc073fb3c6df33.

read-file-name already displays a long path when given a default
(like INITIAL in many other prompting functions), so using
format-prompt here is superfluous.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This reverts commit de4f347901adffd07bc9bff028dc073fb3c6df33.

read-file-name already displays a long path when given a default
(like INITIAL in many other prompting functions), so using
format-prompt here is superfluous.
</pre>
</div>
</content>
</entry>
<entry>
<title>Support scoring on article age interactively in Gnus</title>
<updated>2020-09-12T12:04:02+00:00</updated>
<author>
<name>Alex Bochannek</name>
</author>
<published>2020-09-12T12:04:02+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=4c3f3bf25623c936ca07249203147ae0332d64ed'/>
<id>4c3f3bf25623c936ca07249203147ae0332d64ed</id>
<content type='text'>
* lisp/gnus/gnus-score.el (gnus-summary-score-entry): Support
scoring on article age in interactive scoring (bug#43270).
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* lisp/gnus/gnus-score.el (gnus-summary-score-entry): Support
scoring on article age in interactive scoring (bug#43270).
</pre>
</div>
</content>
</entry>
<entry>
<title>Allow an info structure as argument for gnus-group-get-parameter</title>
<updated>2020-09-11T02:31:47+00:00</updated>
<author>
<name>Andrew G Cohen</name>
</author>
<published>2020-09-11T02:31:47+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=8cf274f9603a19d99e9caa4c5da37e8b91ae4a7c'/>
<id>8cf274f9603a19d99e9caa4c5da37e8b91ae4a7c</id>
<content type='text'>
* lisp/gnus/gnus.el (gnus-group-get-parameter): Allow the group
argument to be either a group name or a group info structure. This is
then parallel to gnus-group-set-parameter.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* lisp/gnus/gnus.el (gnus-group-get-parameter): Allow the group
argument to be either a group name or a group info structure. This is
then parallel to gnus-group-set-parameter.
</pre>
</div>
</content>
</entry>
<entry>
<title>Clean up group-finding in Gnus nnir search</title>
<updated>2020-09-11T01:02:09+00:00</updated>
<author>
<name>Andrew G Cohen</name>
</author>
<published>2020-09-11T01:02:09+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=206cff84bda2a7dd204a0da19e29abf389643f6b'/>
<id>206cff84bda2a7dd204a0da19e29abf389643f6b</id>
<content type='text'>
This is part of removing code from nnir.el that isn't related to
searching backends and therefore belongs somewhere else.

* lisp/gnus/gnus-group.el (gnus-group-make-search-group)
(gnus-group-read-ephemeral-search-group): Put the logic for
determining the groups to search here, rather than in nnir. Improve
documentation.
* lisp/gnus/gnus-int.el (gnus-server-get-active): Renamed from
'nnir-get-active.
* lisp/gnus/nnir.el (nnir-run-imap, nnir-run-find-grep): Use it.
(nnir-get-active): Remove.
(nnir-make-specs): Make obsolete.
* lisp/gnus/nnselect.el (nnselect-group-server):  Make obsolete in
favor of 'gnus-group-server.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This is part of removing code from nnir.el that isn't related to
searching backends and therefore belongs somewhere else.

* lisp/gnus/gnus-group.el (gnus-group-make-search-group)
(gnus-group-read-ephemeral-search-group): Put the logic for
determining the groups to search here, rather than in nnir. Improve
documentation.
* lisp/gnus/gnus-int.el (gnus-server-get-active): Renamed from
'nnir-get-active.
* lisp/gnus/nnir.el (nnir-run-imap, nnir-run-find-grep): Use it.
(nnir-get-active): Remove.
(nnir-make-specs): Make obsolete.
* lisp/gnus/nnselect.el (nnselect-group-server):  Make obsolete in
favor of 'gnus-group-server.
</pre>
</div>
</content>
</entry>
<entry>
<title>Allow editing articles in Gnus nnselect groups</title>
<updated>2020-09-10T23:31:56+00:00</updated>
<author>
<name>Andrew G Cohen</name>
</author>
<published>2020-09-10T23:31:56+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=f7be259400b9e31704560d137562e6e9cbf2a0be'/>
<id>f7be259400b9e31704560d137562e6e9cbf2a0be</id>
<content type='text'>
* lisp/gnus/nnselect.el (nnselect-request-replace-article): New function.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* lisp/gnus/nnselect.el (nnselect-request-replace-article): New function.
</pre>
</div>
</content>
</entry>
<entry>
<title>Tweak how `M-RET' in Message mode fills paragraphs</title>
<updated>2020-09-10T21:26:30+00:00</updated>
<author>
<name>Lars Ingebrigtsen</name>
</author>
<published>2020-09-10T21:26:30+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=a4d37877f8da3588aa176672f65952a91daf1699'/>
<id>a4d37877f8da3588aa176672f65952a91daf1699</id>
<content type='text'>
* lisp/gnus/message.el (message-newline-and-reformat): Pick up any
longer white-space prefix before starting to fill (bug#43299).
This fixes the problem of hitting M-RET on a line that's just "&gt;".
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* lisp/gnus/message.el (message-newline-and-reformat): Pick up any
longer white-space prefix before starting to fill (bug#43299).
This fixes the problem of hitting M-RET on a line that's just "&gt;".
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix up &lt; and &gt; "date" scoring rules in Gnus</title>
<updated>2020-09-10T13:16:04+00:00</updated>
<author>
<name>Alex Bochannek</name>
</author>
<published>2020-09-10T13:16:04+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=6c46dddcb25c959836d4b7ab1d6f174db5dff4b2'/>
<id>6c46dddcb25c959836d4b7ab1d6f174db5dff4b2</id>
<content type='text'>
* lisp/gnus/gnus-score.el (gnus-score-date): The previous &lt; and &gt;
"date" scoring rules (added in the previous patch) had reversed
logic (bug#43270).

Copyright-paperwork-exempt: yes
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* lisp/gnus/gnus-score.el (gnus-score-date): The previous &lt; and &gt;
"date" scoring rules (added in the previous patch) had reversed
logic (bug#43270).

Copyright-paperwork-exempt: yes
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix new summary-line after editing an article in Gnus</title>
<updated>2020-09-10T12:23:34+00:00</updated>
<author>
<name>Andrew G Cohen</name>
</author>
<published>2020-09-10T12:23:34+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=be64c36dd465efd3230b9201f82afbd005a1f412'/>
<id>be64c36dd465efd3230b9201f82afbd005a1f412</id>
<content type='text'>
* lisp/gnus/gnus-sum.el (gnus-summary-edit-article-done): Strip ^M
from the ends of lines after saving an edited article. Otherwise the
new header isn't always parsed properly, resulting in an incorrect
subject line in the summary buffer.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* lisp/gnus/gnus-sum.el (gnus-summary-edit-article-done): Strip ^M
from the ends of lines after saving an edited article. Otherwise the
new header isn't always parsed properly, resulting in an incorrect
subject line in the summary buffer.
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge from origin/emacs-27</title>
<updated>2020-09-09T14:51:14+00:00</updated>
<author>
<name>Glenn Morris</name>
</author>
<published>2020-09-09T14:51:14+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=5a9e237e154f2445e2c198cd4491b26a5a962dcf'/>
<id>5a9e237e154f2445e2c198cd4491b26a5a962dcf</id>
<content type='text'>
9b35b0c99c ; * lisp/man.el (Man-mode): Fix formatting.
abca75d2e9 ; Fix typos; change "Emacs-Lisp" to "Emacs Lisp"
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
9b35b0c99c ; * lisp/man.el (Man-mode): Fix formatting.
abca75d2e9 ; Fix typos; change "Emacs-Lisp" to "Emacs Lisp"
</pre>
</div>
</content>
</entry>
</feed>
