<feed xmlns='http://www.w3.org/2005/Atom'>
<title>emacs/doc, branch scratch/test-remote</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>Improve check for netrc tokens</title>
<updated>2025-09-15T09:43:52+00:00</updated>
<author>
<name>Michael Albinus</name>
</author>
<published>2025-09-15T09:43:52+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=72c19d0f395e8883c65689c86e79905a34d36586'/>
<id>72c19d0f395e8883c65689c86e79905a34d36586</id>
<content type='text'>
* doc/misc/auth.texi (Help for users): Mention also "#" inside tokens.

* lisp/auth-source.el (auth-source-netrc-create): Better check for
token format.

* test/lisp/auth-source-tests.el (auth-source-backend-parse-json):
New test.
(auth-source-test-netrc-create-secret): Extend test.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* doc/misc/auth.texi (Help for users): Mention also "#" inside tokens.

* lisp/auth-source.el (auth-source-netrc-create): Better check for
token format.

* test/lisp/auth-source-tests.el (auth-source-backend-parse-json):
New test.
(auth-source-test-netrc-create-secret): Extend test.
</pre>
</div>
</content>
</entry>
<entry>
<title>; Improve discoverability of tree-sitter related functionality</title>
<updated>2025-09-14T06:53:16+00:00</updated>
<author>
<name>Eli Zaretskii</name>
</author>
<published>2025-09-14T06:53:16+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=dd9f185bf68f6ded7841c50a69595f3eefb65b73'/>
<id>dd9f185bf68f6ded7841c50a69595f3eefb65b73</id>
<content type='text'>
* doc/lispref/positions.texi (List Motion):
* doc/lispref/modes.texi (Major Mode Conventions, Major Modes)
(Parser-based Font Lock, Parser-based Indentation): Improve
indexing and cross-references to tree-sitter related stuff.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* doc/lispref/positions.texi (List Motion):
* doc/lispref/modes.texi (Major Mode Conventions, Major Modes)
(Parser-based Font Lock, Parser-based Indentation): Improve
indexing and cross-references to tree-sitter related stuff.
</pre>
</div>
</content>
</entry>
<entry>
<title>Introduc auth-source-ignore-non-existing-file</title>
<updated>2025-09-12T10:29:30+00:00</updated>
<author>
<name>Michael Albinus</name>
</author>
<published>2025-09-12T10:29:30+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=26ad23addbf79862f310136d2f0d95568fef3a04'/>
<id>26ad23addbf79862f310136d2f0d95568fef3a04</id>
<content type='text'>
* lisp/auth-source.el (auth-source-ignore-non-existing-file):
Rename it from `auth-source-ignore-empty-file'.
(auth-source-backends-parser-file): Use it.

* doc/misc/auth.texi (Help for users):
* etc/NEWS:
* test/lisp/auth-source-tests.el (auth-source-validate-backend)
(auth-source-test-netrc-create-secret):
Use `auth-source-ignore-non-existing-file'.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* lisp/auth-source.el (auth-source-ignore-non-existing-file):
Rename it from `auth-source-ignore-empty-file'.
(auth-source-backends-parser-file): Use it.

* doc/misc/auth.texi (Help for users):
* etc/NEWS:
* test/lisp/auth-source-tests.el (auth-source-validate-backend)
(auth-source-test-netrc-create-secret):
Use `auth-source-ignore-non-existing-file'.
</pre>
</div>
</content>
</entry>
<entry>
<title>Ignore non-existing or empty files in auth-sources</title>
<updated>2025-09-09T21:20:56+00:00</updated>
<author>
<name>Michael Albinus</name>
</author>
<published>2025-09-09T21:20:56+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=d1221a427f67032f4adf81f02b377ce163413ca1'/>
<id>d1221a427f67032f4adf81f02b377ce163413ca1</id>
<content type='text'>
* doc/misc/auth.texi: Replace @code{"..."} by @t{"..."}.
(Help for users): Describe property lists format.  Explain, that
empty files in auth-sources are ignored when
auth-source-ignore-empty-file is non-nil.
(Help for developers): Add auth-source-creation-defaults to vindex.

* etc/NEWS: Introduce auth-source-ignore-empty-file.
Presentational fixes and improvements.

* lisp/auth-source.el (auth-source-ignore-empty-file): New defcustom.
(auth-source-backends-parser-file): Use it.  (Bug#9113)

* test/lisp/auth-source-tests.el (auth-source-validate-backend):
Let-bind `auth-source-ignore-empty-file'.
(auth-source-test-searches): Set file suffix.
(auth-source-test-netrc-create-secret): Adapt test.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* doc/misc/auth.texi: Replace @code{"..."} by @t{"..."}.
(Help for users): Describe property lists format.  Explain, that
empty files in auth-sources are ignored when
auth-source-ignore-empty-file is non-nil.
(Help for developers): Add auth-source-creation-defaults to vindex.

* etc/NEWS: Introduce auth-source-ignore-empty-file.
Presentational fixes and improvements.

* lisp/auth-source.el (auth-source-ignore-empty-file): New defcustom.
(auth-source-backends-parser-file): Use it.  (Bug#9113)

* test/lisp/auth-source-tests.el (auth-source-validate-backend):
Let-bind `auth-source-ignore-empty-file'.
(auth-source-test-searches): Set file suffix.
(auth-source-test-netrc-create-secret): Adapt test.
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge from origin/emacs-30</title>
<updated>2025-09-09T08:11:00+00:00</updated>
<author>
<name>Michael Albinus</name>
</author>
<published>2025-09-09T08:11:00+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=744216c0293b7cfad735e915237e4f25dd367722'/>
<id>744216c0293b7cfad735e915237e4f25dd367722</id>
<content type='text'>
56cdb65e540 ; * doc/emacs/mini.texi (Minibuffer History): Fix typo.
e65ebdf3290 ; Improve documentation of isearch ion minibuffer
6544372764d * doc/misc/tramp.texi (Password handling): Fix default of...
96d90403417 Fix auth-source.el doc
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
56cdb65e540 ; * doc/emacs/mini.texi (Minibuffer History): Fix typo.
e65ebdf3290 ; Improve documentation of isearch ion minibuffer
6544372764d * doc/misc/tramp.texi (Password handling): Fix default of...
96d90403417 Fix auth-source.el doc
</pre>
</div>
</content>
</entry>
<entry>
<title>; * doc/emacs/mini.texi (Minibuffer History): Fix typo.</title>
<updated>2025-09-08T13:14:04+00:00</updated>
<author>
<name>Robert Pluim</name>
</author>
<published>2025-09-08T13:14:04+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=56cdb65e54017b50ca994a5589cd31f36c44885b'/>
<id>56cdb65e54017b50ca994a5589cd31f36c44885b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>; Improve documentation of isearch ion minibuffer</title>
<updated>2025-09-08T11:55:43+00:00</updated>
<author>
<name>Eli Zaretskii</name>
</author>
<published>2025-09-08T11:55:43+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=e65ebdf32904514a9b99505ce4cb5ab1421dbc51'/>
<id>e65ebdf32904514a9b99505ce4cb5ab1421dbc51</id>
<content type='text'>
* doc/emacs/mini.texi (Minibuffer History):
* doc/emacs/search.texi (Repeat Isearch, Isearch Minibuffer):
Improve wording, cross-references, and indexing.  (Bug#79395)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* doc/emacs/mini.texi (Minibuffer History):
* doc/emacs/search.texi (Repeat Isearch, Isearch Minibuffer):
Improve wording, cross-references, and indexing.  (Bug#79395)
</pre>
</div>
</content>
</entry>
<entry>
<title>Make C-x v w w work in Log View mode, to change working directory</title>
<updated>2025-09-08T10:50:36+00:00</updated>
<author>
<name>Sean Whitton</name>
</author>
<published>2025-09-08T10:50:36+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=15939846a00969ed815e3ca7bd31f1ef1dc7355f'/>
<id>15939846a00969ed815e3ca7bd31f1ef1dc7355f</id>
<content type='text'>
* lisp/vc/diff-mode.el (diff-find-matching-buffer): Rename ...
* lisp/progmodes/project.el
(project-change-to-matching-directory): ... to here.  All uses
changed.
* lisp/vc/log-view.el (project-change-to-matching-directory):
Declare.
(log-view-mode): Use it.
* doc/emacs/vc1-xtra.texi (Other Working Trees): Document the
change.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* lisp/vc/diff-mode.el (diff-find-matching-buffer): Rename ...
* lisp/progmodes/project.el
(project-change-to-matching-directory): ... to here.  All uses
changed.
* lisp/vc/log-view.el (project-change-to-matching-directory):
Declare.
(log-view-mode): Use it.
* doc/emacs/vc1-xtra.texi (Other Working Trees): Document the
change.
</pre>
</div>
</content>
</entry>
<entry>
<title>* doc/misc/tramp.texi (Password handling): Fix default of auth-sources.</title>
<updated>2025-09-07T14:08:09+00:00</updated>
<author>
<name>Michael Albinus</name>
</author>
<published>2025-09-07T14:08:09+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=6544372764d9bbec648440a1be3b6b63fc160bd9'/>
<id>6544372764d9bbec648440a1be3b6b63fc160bd9</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix auth-source.el doc</title>
<updated>2025-09-07T10:18:42+00:00</updated>
<author>
<name>Michael Albinus</name>
</author>
<published>2025-09-07T10:18:42+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=96d90403417fbe417d5eb4c8a9d171a559d46c2b'/>
<id>96d90403417fbe417d5eb4c8a9d171a559d46c2b</id>
<content type='text'>
* doc/misc/auth.texi (Help for users): Change variables to user
options where appropriate.  Use setopt for them.  Add Tramp link.
Fix example.  (Bug#9113)

* lisp/auth-source.el (auth-sources): Add :link.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* doc/misc/auth.texi (Help for users): Change variables to user
options where appropriate.  Use setopt for them.  Add Tramp link.
Fix example.  (Bug#9113)

* lisp/auth-source.el (auth-sources): Add :link.
</pre>
</div>
</content>
</entry>
</feed>
