<feed xmlns='http://www.w3.org/2005/Atom'>
<title>emacs/lisp/nxml, branch scratch/jsonrpc-things</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>Unbind 'C-M-i' in Text mode</title>
<updated>2023-11-26T10:30:12+00:00</updated>
<author>
<name>Eshel Yaron</name>
</author>
<published>2023-11-21T11:39:23+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=47e313e9805c527e590df4270062a9185ee9db78'/>
<id>47e313e9805c527e590df4270062a9185ee9db78</id>
<content type='text'>
Remove the binding of 'C-M-i' to 'ispell-complete-word' in Text mode.
Define a new 'ispell-completion-at-point' function and add that to
'completion-at-point-functions' in Text mode, such that
'completion-at-point' provides the same word completions as
'ispell-complete-word' does OOTB.

* lisp/textmodes/ispell.el (ispell-completion-at-point): New function.
* lisp/textmodes/text-mode.el (text-mode): Add it to 'c-a-p-functions'.
(text-mode-map): Remove 'C-M-i' binding.
(text-mode-meta-tab-ispell-complete-word): New user option.
* etc/NEWS: Announce it.
* doc/emacs/fixit.texi (Spelling)
* doc/emacs/text.texi (Text Mode)
* doc/lispref/modes.texi (Basic Major Modes)
(Example Major Modes): Update.
* lisp/mail/sendmail.el (mail-abbrevs-loaded)
* lisp/nxml/nxml-mode.el (nxml-mode-map): Remove superfluous binding.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Remove the binding of 'C-M-i' to 'ispell-complete-word' in Text mode.
Define a new 'ispell-completion-at-point' function and add that to
'completion-at-point-functions' in Text mode, such that
'completion-at-point' provides the same word completions as
'ispell-complete-word' does OOTB.

* lisp/textmodes/ispell.el (ispell-completion-at-point): New function.
* lisp/textmodes/text-mode.el (text-mode): Add it to 'c-a-p-functions'.
(text-mode-map): Remove 'C-M-i' binding.
(text-mode-meta-tab-ispell-complete-word): New user option.
* etc/NEWS: Announce it.
* doc/emacs/fixit.texi (Spelling)
* doc/emacs/text.texi (Text Mode)
* doc/lispref/modes.texi (Basic Major Modes)
(Example Major Modes): Update.
* lisp/mail/sendmail.el (mail-abbrevs-loaded)
* lisp/nxml/nxml-mode.el (nxml-mode-map): Remove superfluous binding.
</pre>
</div>
</content>
</entry>
<entry>
<title>Simplify rng-substq with cl-substitute</title>
<updated>2023-08-05T15:58:19+00:00</updated>
<author>
<name>Stefan Kangas</name>
</author>
<published>2023-08-05T15:58:19+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=8e20da1517aa585e6286fa8e439db10fb62aaa57'/>
<id>8e20da1517aa585e6286fa8e439db10fb62aaa57</id>
<content type='text'>
* lisp/nxml/rng-util.el (rng-substq): Simplify.
(cl-lib): Require.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* lisp/nxml/rng-util.el (rng-substq): Simplify.
(cl-lib): Require.
</pre>
</div>
</content>
</entry>
<entry>
<title>; Prefer HTTPS to HTTP in more links</title>
<updated>2023-08-02T21:32:28+00:00</updated>
<author>
<name>Stefan Kangas</name>
</author>
<published>2023-08-02T21:26:52+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=0910230be6ee858d8d8849a1fc9559bfd163dc38'/>
<id>0910230be6ee858d8d8849a1fc9559bfd163dc38</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix defface's with no customization data</title>
<updated>2023-07-20T16:25:43+00:00</updated>
<author>
<name>Eli Zaretskii</name>
</author>
<published>2023-07-20T16:25:43+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=e72afa9dbf92f45d00c87c90ead364d52f73024f'/>
<id>e72afa9dbf92f45d00c87c90ead364d52f73024f</id>
<content type='text'>
* lisp/net/shr.el (shr-h4, shr-h5, shr-h6):
* lisp/cedet/semantic/decorate/include.el
(semantic-decoration-on-includes):
* lisp/progmodes/make-mode.el (makefile-shell):
* lisp/time.el (display-time-date-and-time):
* lisp/nxml/nxml-mode.el (nxml-text, nxml-delimiter)
(nxml-element-colon): Add face definitions (bug#64655).
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* lisp/net/shr.el (shr-h4, shr-h5, shr-h6):
* lisp/cedet/semantic/decorate/include.el
(semantic-decoration-on-includes):
* lisp/progmodes/make-mode.el (makefile-shell):
* lisp/time.el (display-time-date-and-time):
* lisp/nxml/nxml-mode.el (nxml-text, nxml-delimiter)
(nxml-element-colon): Add face definitions (bug#64655).
</pre>
</div>
</content>
</entry>
<entry>
<title>* lisp/subr.el (with-restriction): Tweak indent rule</title>
<updated>2023-06-13T02:43:44+00:00</updated>
<author>
<name>Stefan Monnier</name>
</author>
<published>2023-06-13T02:43:44+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=4da479920e66ba245fd374da661bf7a27af718b9'/>
<id>4da479920e66ba245fd374da661bf7a27af718b9</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>(rng-complete-tag): Add the (ignored) argument to the :company-kind function</title>
<updated>2023-05-03T20:58:27+00:00</updated>
<author>
<name>Dmitry Gutov</name>
</author>
<published>2023-05-03T20:58:27+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=cc090294d77c5d4047607d3234c304aaa1b0489c'/>
<id>cc090294d77c5d4047607d3234c304aaa1b0489c</id>
<content type='text'>
* lisp/nxml/rng-nxml.el (rng-complete-tag): Add the (ignored)
argument to the :company-kind function.  Fixes the "Wrong number
of arguments" error reported at
https://github.com/company-mode/company-mode/issues/1386.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* lisp/nxml/rng-nxml.el (rng-complete-tag): Add the (ignored)
argument to the :company-kind function.  Fixes the "Wrong number
of arguments" error reported at
https://github.com/company-mode/company-mode/issues/1386.
</pre>
</div>
</content>
</entry>
<entry>
<title>; * lisp/nxml/xmltok.el (xmltok-scan-attributes): Fix last change</title>
<updated>2023-03-18T15:05:31+00:00</updated>
<author>
<name>Gregory Heytings</name>
</author>
<published>2023-03-18T15:04:26+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=11592bcfda6cf85d797d333072453c98994790e1'/>
<id>11592bcfda6cf85d797d333072453c98994790e1</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Avoid slowdowns in xmltok-scan-attributes</title>
<updated>2023-03-18T10:51:32+00:00</updated>
<author>
<name>Gregory Heytings</name>
</author>
<published>2023-03-18T10:49:29+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=0eddfa28ebdba3b1e5b3249416f14ea67bd41e3c'/>
<id>0eddfa28ebdba3b1e5b3249416f14ea67bd41e3c</id>
<content type='text'>
* lisp/nxml/xmltok.el (xmltok-scan-attributes): Limit the search
to 10000 characters, to avoid slowdowns due to the quadratic
complexity of the regexp.  Suggested by Stefan Monnier.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* lisp/nxml/xmltok.el (xmltok-scan-attributes): Limit the search
to 10000 characters, to avoid slowdowns due to the quadratic
complexity of the regexp.  Suggested by Stefan Monnier.
</pre>
</div>
</content>
</entry>
<entry>
<title>; Add 2023 to copyright years.</title>
<updated>2023-01-01T10:31:12+00:00</updated>
<author>
<name>Eli Zaretskii</name>
</author>
<published>2023-01-01T10:31:12+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=cae528457cb862dc886a34240c9d4c73035b6659'/>
<id>cae528457cb862dc886a34240c9d4c73035b6659</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>; Fix typos</title>
<updated>2022-11-18T15:02:19+00:00</updated>
<author>
<name>Stefan Kangas</name>
</author>
<published>2022-11-18T14:48:22+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=ba485eb949ddec53b1d7b5d78f3fcfbe2be60d7d'/>
<id>ba485eb949ddec53b1d7b5d78f3fcfbe2be60d7d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
