<feed xmlns='http://www.w3.org/2005/Atom'>
<title>emacs/lisp/gnus, branch scratch/split-package.el</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>Handle 'lexical-binding' cookie in nnrss output</title>
<updated>2025-08-16T10:49:19+00:00</updated>
<author>
<name>Manuel Giraud</name>
</author>
<published>2025-08-08T15:53:01+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=cc37d199b029032045ccf0eb7bc83f166d33370a'/>
<id>cc37d199b029032045ccf0eb7bc83f166d33370a</id>
<content type='text'>
* lisp/gnus/nnrss.el (nnrss-save-server-data)
(nnrss-save-group-data): Add a 'lexical-binding' cookie.
* lisp/gnus/nnrss.el (nnrss-read-server-data)
(nnrss-read-group-data): Allow missing 'lexical-binding' cookie.
(Bug#79199)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* lisp/gnus/nnrss.el (nnrss-save-server-data)
(nnrss-save-group-data): Add a 'lexical-binding' cookie.
* lisp/gnus/nnrss.el (nnrss-read-server-data)
(nnrss-read-group-data): Allow missing 'lexical-binding' cookie.
(Bug#79199)
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge from origin/emacs-30</title>
<updated>2025-08-02T15:13:41+00:00</updated>
<author>
<name>Eli Zaretskii</name>
</author>
<published>2025-08-02T15:13:41+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=0c77c5edfdb7e32941d412b75422ef9d365a7743'/>
<id>0c77c5edfdb7e32941d412b75422ef9d365a7743</id>
<content type='text'>
477335a10ba ; Fix documentation of 'find-file-noselect'
9e3720bbb11 * doc/misc/gnus.texi (Category Syntax): Update gnus-agent...
456f44a7b3c ; Improve documentation of change hooks
f20d5e63bc0 ; * lisp/image.el (image-supported-file-p): Doc fix (bug#...
8ec2ddebdd4 ; Update documentation of GC in ELisp manual
57a9798c22a Prefer "tls" to "ssl" in documentation
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
477335a10ba ; Fix documentation of 'find-file-noselect'
9e3720bbb11 * doc/misc/gnus.texi (Category Syntax): Update gnus-agent...
456f44a7b3c ; Improve documentation of change hooks
f20d5e63bc0 ; * lisp/image.el (image-supported-file-p): Doc fix (bug#...
8ec2ddebdd4 ; Update documentation of GC in ELisp manual
57a9798c22a Prefer "tls" to "ssl" in documentation
</pre>
</div>
</content>
</entry>
<entry>
<title>Prefer "tls" to "ssl" in documentation</title>
<updated>2025-07-28T12:11:50+00:00</updated>
<author>
<name>Robert Pluim</name>
</author>
<published>2025-07-28T12:11:50+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=57a9798c22a6d8a75883dfcc1c4430be428d20bb'/>
<id>57a9798c22a6d8a75883dfcc1c4430be428d20bb</id>
<content type='text'>
* doc/misc/gnus.texi (NNTP): Refer to 'nntp-open-tls-stream'.
(Direct Functions, Customizing the IMAP Connection): Add
commentary about desirability of STARTTLS.  Correct
documentation about use of GnuTLS.  Use 'tls in example.
* lisp/gnus/nnimap.el (nnimap-server-port): Mention 'tls in
preference to 'ssl.
* lisp/gnus/nntp.el (nntp-open-connection-function)
(nntp-never-echoes-commands): Document 'nntp-open-tls-stream' as
preferred to 'nntp-open-ssl-stream'.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* doc/misc/gnus.texi (NNTP): Refer to 'nntp-open-tls-stream'.
(Direct Functions, Customizing the IMAP Connection): Add
commentary about desirability of STARTTLS.  Correct
documentation about use of GnuTLS.  Use 'tls in example.
* lisp/gnus/nnimap.el (nnimap-server-port): Mention 'tls in
preference to 'ssl.
* lisp/gnus/nntp.el (nntp-open-connection-function)
(nntp-never-echoes-commands): Document 'nntp-open-tls-stream' as
preferred to 'nntp-open-ssl-stream'.
</pre>
</div>
</content>
</entry>
<entry>
<title>Add new function 'dom-inner-text'</title>
<updated>2025-07-25T23:42:08+00:00</updated>
<author>
<name>Jim Porter</name>
</author>
<published>2025-07-20T20:48:22+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=2e53c7d08ba0de2468ec25cf9a9d7079604f9409'/>
<id>2e53c7d08ba0de2468ec25cf9a9d7079604f9409</id>
<content type='text'>
This replaces 'dom-text' and 'dom-texts', and is both more correct and
more efficient than them.

* lisp/dom.el (dom-text, dom-texts): Make obsolete in favor of...
(dom-inner-text--1, dom-inner-text): ... these new functions.  Update
callers.

* doc/lispref/text.texi (Document Object Model): Update documentation to
refer to 'dom-inner-text'.

* etc/NEWS: Announce this change.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This replaces 'dom-text' and 'dom-texts', and is both more correct and
more efficient than them.

* lisp/dom.el (dom-text, dom-texts): Make obsolete in favor of...
(dom-inner-text--1, dom-inner-text): ... these new functions.  Update
callers.

* doc/lispref/text.texi (Document Object Model): Update documentation to
refer to 'dom-inner-text'.

* etc/NEWS: Announce this change.
</pre>
</div>
</content>
</entry>
<entry>
<title>Display SVG images inline in Gnus</title>
<updated>2025-06-29T16:39:29+00:00</updated>
<author>
<name>Juri Linkov</name>
</author>
<published>2025-06-29T16:39:29+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=7fd846f61ea74c6438c7ce3def7555a591279514'/>
<id>7fd846f61ea74c6438c7ce3def7555a591279514</id>
<content type='text'>
* lisp/gnus/mm-decode.el (mm-inline-media-tests): Add "image/svg+xml".
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* lisp/gnus/mm-decode.el (mm-inline-media-tests): Add "image/svg+xml".
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge from origin/emacs-30</title>
<updated>2025-05-10T11:40:30+00:00</updated>
<author>
<name>Eli Zaretskii</name>
</author>
<published>2025-05-10T11:40:30+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=1410bfb7ca5a3497fbbf36a9d31f9a1dce8fd63a'/>
<id>1410bfb7ca5a3497fbbf36a9d31f9a1dce8fd63a</id>
<content type='text'>
0d493864cee Fix indentation of XML comments
1a2c29b5317 Improve Tramp's make-process handling for Solaris
a7dffc2ea38 Document 'time-stamp-time-zone' in Emacs Manual
0b4eb525b69 Make treesit--simple-indent-eval more permissive (bug#78065)
ed7b55f6bf1 Adapt Tramp tests
b172a1478c1 ; * doc/lispref/tips.texi (Library Headers): Fix wording ...
81629b2b2ba ; * lisp/gnus/mail-source.el (mail-sources): Fix a typo (...
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
0d493864cee Fix indentation of XML comments
1a2c29b5317 Improve Tramp's make-process handling for Solaris
a7dffc2ea38 Document 'time-stamp-time-zone' in Emacs Manual
0b4eb525b69 Make treesit--simple-indent-eval more permissive (bug#78065)
ed7b55f6bf1 Adapt Tramp tests
b172a1478c1 ; * doc/lispref/tips.texi (Library Headers): Fix wording ...
81629b2b2ba ; * lisp/gnus/mail-source.el (mail-sources): Fix a typo (...
</pre>
</div>
</content>
</entry>
<entry>
<title>; * lisp/gnus/mail-source.el (mail-sources): Fix a typo (bug#78235).</title>
<updated>2025-05-04T06:47:49+00:00</updated>
<author>
<name>Eli Zaretskii</name>
</author>
<published>2025-05-04T06:47:49+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=81629b2b2ba282136bc5055bbaa0302321306e61'/>
<id>81629b2b2ba282136bc5055bbaa0302321306e61</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>nnfeed: Pass through list request failure reports</title>
<updated>2025-04-26T11:41:27+00:00</updated>
<author>
<name>Daniel Semyonov</name>
</author>
<published>2025-04-13T13:06:39+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=0e2fd0e441b2cc7686450d8784707ebc6fbe4917'/>
<id>0e2fd0e441b2cc7686450d8784707ebc6fbe4917</id>
<content type='text'>
* lisp/gnus/nnfeed.el (nnfeed-request-list): Report the same
message reported by the inheriting backend on failure.
(Bug#74857)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* lisp/gnus/nnfeed.el (nnfeed-request-list): Report the same
message reported by the inheriting backend on failure.
(Bug#74857)
</pre>
</div>
</content>
</entry>
<entry>
<title>lisp/gnus/gnus-start.el (gnus-dribble-eval-file): Ignore lexbind warning</title>
<updated>2025-04-13T14:59:47+00:00</updated>
<author>
<name>Stefan Monnier</name>
</author>
<published>2025-04-13T14:59:47+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=1dee377bad00737c4730339f62467f45224b5089'/>
<id>1dee377bad00737c4730339f62467f45224b5089</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>* lisp/gnus/nnfeed.el (nnfeed--write-server): Use default print settings.</title>
<updated>2025-04-05T10:35:40+00:00</updated>
<author>
<name>James Thomas</name>
</author>
<published>2025-03-14T10:24:31+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=5987d77f40bf72a268d35d1f2a88f7cd00c17459'/>
<id>5987d77f40bf72a268d35d1f2a88f7cd00c17459</id>
<content type='text'>
Bug#77113
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Bug#77113
</pre>
</div>
</content>
</entry>
</feed>
