<feed xmlns='http://www.w3.org/2005/Atom'>
<title>emacs/doc/misc, branch scratch/low-level-key</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>Adapt Tramp versions</title>
<updated>2025-06-29T09:03:05+00:00</updated>
<author>
<name>Michael Albinus</name>
</author>
<published>2025-06-29T09:03:05+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=bd04818e53be49f2a087de8a92cb02549f8c2407'/>
<id>bd04818e53be49f2a087de8a92cb02549f8c2407</id>
<content type='text'>
* doc/misc/trampver.texi:
* lisp/net/trampver.el (tramp-version): Adapt Tramp versions.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* doc/misc/trampver.texi:
* lisp/net/trampver.el (tramp-version): Adapt Tramp versions.
</pre>
</div>
</content>
</entry>
<entry>
<title>bug#78845: [PATCH 2/2] doc: Document desktop notifications for Gnus</title>
<updated>2025-06-28T09:35:13+00:00</updated>
<author>
<name>Maxim Cournoyer</name>
</author>
<published>2025-06-20T04:27:17+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=08b0dd890fcccadd3372a80141ab02074bc4430a'/>
<id>08b0dd890fcccadd3372a80141ab02074bc4430a</id>
<content type='text'>
* doc/misc/gnus.texi (Notifications): Add section.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* doc/misc/gnus.texi (Notifications): Add section.
</pre>
</div>
</content>
</entry>
<entry>
<title>bug#78845: [PATCH 1/2] doc: Update Texinfo menus.</title>
<updated>2025-06-28T09:30:01+00:00</updated>
<author>
<name>Maxim Cournoyer</name>
</author>
<published>2025-06-20T04:27:16+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=d04b5d244500b66dcdbbe807c0c75a74b4d9182e'/>
<id>d04b5d244500b66dcdbbe807c0c75a74b4d9182e</id>
<content type='text'>
Generated from Emacs via M-x texinfo-all-menus-update, and dropping
changes made due to limitations of the tool.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Generated from Emacs via M-x texinfo-all-menus-update, and dropping
changes made due to limitations of the tool.
</pre>
</div>
</content>
</entry>
<entry>
<title>Update from Gnulib by running admin/merge-gnulib</title>
<updated>2025-06-28T06:06:40+00:00</updated>
<author>
<name>Paul Eggert</name>
</author>
<published>2025-06-28T05:32:33+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=dbdf761187d7cccfad20a2899bab3dc77f379c3a'/>
<id>dbdf761187d7cccfad20a2899bab3dc77f379c3a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>calc: Allow strings with character codes above Latin-1</title>
<updated>2025-06-14T14:07:19+00:00</updated>
<author>
<name>Jacob S. Gordon</name>
</author>
<published>2025-05-19T19:05:37+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=5bd9fa084dcf0ce8efaaf9212c24addec48d824f'/>
<id>5bd9fa084dcf0ce8efaaf9212c24addec48d824f</id>
<content type='text'>
The current behavior of the functions 'calc-display-strings',
'strings', and 'bstrings' is to skip any vector containing
integers outside the Latin-1 range (0x00-0xFF).  We introduce a
custom variable 'calc-string-maximum-character' to replace this
hard-coded maximum, and to allow vectors containing higher
character codes to be displayed as strings.  The default value
of 0xFF preserves the existing behavior.

* lisp/calc/calc.el (calc-string-maximum-character): Add custom
variable 'calc-string-maximum-character'.
* lisp/calc/calccomp.el (math-vector-is-string): Replace hard-coded
maximum with 'calc-string-maximum-character', and the 'natnump'
assertion with 'characterp'.  The latter guards against the
maximum being larger than '(max-char)', but not on invalid types of
the maximum such as strings.

* test/lisp/calc/calc-tests.el (calc-math-vector-is-string): Add
tests for 'math-vector-is-string' using different values of
'calc-string-maximum-character'.

* doc/misc/calc.texi (Quick Calculator, Strings, Customizing Calc):
Add variable definition for 'calc-string-maximum-character' and
reference thereof when discussing 'calc-display-strings'.
Generalize a comment about string display and availability of 8-bit
fonts.
(Bug#78528)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The current behavior of the functions 'calc-display-strings',
'strings', and 'bstrings' is to skip any vector containing
integers outside the Latin-1 range (0x00-0xFF).  We introduce a
custom variable 'calc-string-maximum-character' to replace this
hard-coded maximum, and to allow vectors containing higher
character codes to be displayed as strings.  The default value
of 0xFF preserves the existing behavior.

* lisp/calc/calc.el (calc-string-maximum-character): Add custom
variable 'calc-string-maximum-character'.
* lisp/calc/calccomp.el (math-vector-is-string): Replace hard-coded
maximum with 'calc-string-maximum-character', and the 'natnump'
assertion with 'characterp'.  The latter guards against the
maximum being larger than '(max-char)', but not on invalid types of
the maximum such as strings.

* test/lisp/calc/calc-tests.el (calc-math-vector-is-string): Add
tests for 'math-vector-is-string' using different values of
'calc-string-maximum-character'.

* doc/misc/calc.texi (Quick Calculator, Strings, Customizing Calc):
Add variable definition for 'calc-string-maximum-character' and
reference thereof when discussing 'calc-display-strings'.
Generalize a comment about string display and availability of 8-bit
fonts.
(Bug#78528)
</pre>
</div>
</content>
</entry>
<entry>
<title>* doc/misc/rcirc.texi: Rephrase recent addition</title>
<updated>2025-06-14T13:22:06+00:00</updated>
<author>
<name>Philip Kaludercic</name>
</author>
<published>2025-06-14T13:22:06+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=d97ddce0aac5fc0e114e7274dd286c5909dced79'/>
<id>d97ddce0aac5fc0e114e7274dd286c5909dced79</id>
<content type='text'>
https://lists.gnu.org/archive/html/emacs-devel/2025-06/msg00184.html
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
https://lists.gnu.org/archive/html/emacs-devel/2025-06/msg00184.html
</pre>
</div>
</content>
</entry>
<entry>
<title>; * doc/misc/rcirc.texi (Configuration): Fix cross-reference.</title>
<updated>2025-06-14T06:14:51+00:00</updated>
<author>
<name>Eli Zaretskii</name>
</author>
<published>2025-06-14T06:14:51+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=d9aa098a32ff60f5e3cfef1b4672e2229a1725d5'/>
<id>d9aa098a32ff60f5e3cfef1b4672e2229a1725d5</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Update modus-themes to their version 4.8.0</title>
<updated>2025-06-11T05:09:05+00:00</updated>
<author>
<name>Protesilaos Stavrou</name>
</author>
<published>2025-06-11T05:09:05+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=7416595e2fc0ff676ef98a139328722ac9220ca0'/>
<id>7416595e2fc0ff676ef98a139328722ac9220ca0</id>
<content type='text'>
* doc/misc/modus-themes.org (Preview theme colors):(Get a single color from the palette with ~modus-themes-get-color-value~):
(DIY Do not extend the region background, Note on SHR fonts): Fix some typos.
(Full support for packages or face groups): Include tmr in the
list of supported packages.
(Acknowledgements): Mention more people who have contributed to
the project in some capacity.

* etc/themes/modus-operandi-deuteranopia-theme.el:
* etc/themes/modus-operandi-theme.el:
* etc/themes/modus-operandi-tinted-theme.el:
* etc/themes/modus-operandi-tritanopia-theme.el:
* etc/themes/modus-vivendi-deuteranopia-theme.el:
* etc/themes/modus-vivendi-theme.el:
* etc/themes/modus-vivendi-tinted-theme.el:
* etc/themes/modus-vivendi-tritanopia-theme.el: Make small changes to the palette of each theme.

* etc/themes/modus-themes.el
(modus-themes-after-load-theme-hook): Reword the doc string
(modus-themes--rotate, modus-themes--rotate-p)
(modus-themes--next-in-rotation, modus-themes-rotate): Make
rotation optionally move in the opposite direction.
(modus-themes-faces): Tweak some faces.

Release notes: &lt;https://protesilaos.com/codelog/2025-06-11-emacs-modus-themes-4-8-0/&gt;.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* doc/misc/modus-themes.org (Preview theme colors):(Get a single color from the palette with ~modus-themes-get-color-value~):
(DIY Do not extend the region background, Note on SHR fonts): Fix some typos.
(Full support for packages or face groups): Include tmr in the
list of supported packages.
(Acknowledgements): Mention more people who have contributed to
the project in some capacity.

* etc/themes/modus-operandi-deuteranopia-theme.el:
* etc/themes/modus-operandi-theme.el:
* etc/themes/modus-operandi-tinted-theme.el:
* etc/themes/modus-operandi-tritanopia-theme.el:
* etc/themes/modus-vivendi-deuteranopia-theme.el:
* etc/themes/modus-vivendi-theme.el:
* etc/themes/modus-vivendi-tinted-theme.el:
* etc/themes/modus-vivendi-tritanopia-theme.el: Make small changes to the palette of each theme.

* etc/themes/modus-themes.el
(modus-themes-after-load-theme-hook): Reword the doc string
(modus-themes--rotate, modus-themes--rotate-p)
(modus-themes--next-in-rotation, modus-themes-rotate): Make
rotation optionally move in the opposite direction.
(modus-themes-faces): Tweak some faces.

Release notes: &lt;https://protesilaos.com/codelog/2025-06-11-emacs-modus-themes-4-8-0/&gt;.
</pre>
</div>
</content>
</entry>
<entry>
<title>Support checking auth-source for NickServ password for rcirc</title>
<updated>2025-06-09T13:13:38+00:00</updated>
<author>
<name>Philip Kaludercic</name>
</author>
<published>2025-06-09T13:13:19+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=1009e3d1fd6a40cf7a07a0f75a24f704737e4c6b'/>
<id>1009e3d1fd6a40cf7a07a0f75a24f704737e4c6b</id>
<content type='text'>
* doc/misc/rcirc.texi: Mention new feature.
* etc/NEWS: Mention new feature.
* lisp/net/rcirc.el (rcirc-authinfo): Update type and documentation.
(rcirc-authenticate): Handle a special type to indicate that the
password is stored via auth-source.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* doc/misc/rcirc.texi: Mention new feature.
* etc/NEWS: Mention new feature.
* lisp/net/rcirc.el (rcirc-authinfo): Update type and documentation.
(rcirc-authenticate): Handle a special type to indicate that the
password is stored via auth-source.
</pre>
</div>
</content>
</entry>
<entry>
<title>Update to Transient v0.9.1-7-gd7d2c1c2</title>
<updated>2025-06-04T13:17:51+00:00</updated>
<author>
<name>Jonas Bernoulli</name>
</author>
<published>2025-06-04T13:17:51+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=680fa61b5989b84c0e19ac568be012afd8345f0c'/>
<id>680fa61b5989b84c0e19ac568be012afd8345f0c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
