<feed xmlns='http://www.w3.org/2005/Atom'>
<title>emacs/test/src, branch scratch/package.el-experiments</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>Move keyboard input functions from lread.c to keyboard.c</title>
<updated>2025-07-30T09:04:11+00:00</updated>
<author>
<name>Mattias Engdegård</name>
</author>
<published>2025-07-29T14:29:43+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=2d18878b962e3591fe5052ede88e520f9b861dda'/>
<id>2d18878b962e3591fe5052ede88e520f9b861dda</id>
<content type='text'>
These have nothing to do with the Lisp reader at all.

Suggested by Lynn Winebarger (bug#79035).

* src/lread.c (read_filtered_event, Fread_char, Fread_event)
(Fread_char_exclusive, Qascii_character): Move...
* src/keyboard.c: ...here.
* test/src/lread-tests.el (test-inhibit-interaction): Move...
* test/src/keyboard-tests.el (keyboard-inhibit-interaction): ...here.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
These have nothing to do with the Lisp reader at all.

Suggested by Lynn Winebarger (bug#79035).

* src/lread.c (read_filtered_event, Fread_char, Fread_event)
(Fread_char_exclusive, Qascii_character): Move...
* src/keyboard.c: ...here.
* test/src/lread-tests.el (test-inhibit-interaction): Move...
* test/src/keyboard-tests.el (keyboard-inhibit-interaction): ...here.
</pre>
</div>
</content>
</entry>
<entry>
<title>Check for end-of-file when reading character escapes (bug#79097)</title>
<updated>2025-07-25T19:54:59+00:00</updated>
<author>
<name>Mattias Engdegård</name>
</author>
<published>2025-07-25T19:53:37+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=33161e51e539eadeb11282c06df73a5d76afdff2'/>
<id>33161e51e539eadeb11282c06df73a5d76afdff2</id>
<content type='text'>
* src/lread.c (read_char_escape): Add check.
* test/src/lread-tests.el (lread-char-escape-eof): New test.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* src/lread.c (read_char_escape): Add check.
* test/src/lread-tests.el (lread-char-escape-eof): New test.
</pre>
</div>
</content>
</entry>
<entry>
<title>; Avoid lexical-binding warning in lread-tests</title>
<updated>2025-07-19T17:50:57+00:00</updated>
<author>
<name>Eli Zaretskii</name>
</author>
<published>2025-07-19T17:50:57+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=7300f5000785a942a14847fccb534748f53e0628'/>
<id>7300f5000785a942a14847fccb534748f53e0628</id>
<content type='text'>
* test/src/lread-tests.el (lread-test-bug-31186)
(lread-tests--unescaped-char-literals): Avoid lexical-binding warning.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* test/src/lread-tests.el (lread-test-bug-31186)
(lread-tests--unescaped-char-literals): Avoid lexical-binding warning.
</pre>
</div>
</content>
</entry>
<entry>
<title>; silence some compiler warnings in tests</title>
<updated>2025-07-19T15:02:28+00:00</updated>
<author>
<name>Mattias Engdegård</name>
</author>
<published>2025-07-19T15:02:28+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=c184ea24414e4940783dfd4a594cb0898d560b6e'/>
<id>c184ea24414e4940783dfd4a594cb0898d560b6e</id>
<content type='text'>
* test/lisp/savehist-tests.el (savehist-test-saved-variables):
(savehist-test-duplicated-saved-symbols):
* test/src/data-tests.el (binding-test-toplevel-values):
Suppress harmless warnings.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* test/lisp/savehist-tests.el (savehist-test-saved-variables):
(savehist-test-duplicated-saved-symbols):
* test/src/data-tests.el (binding-test-toplevel-values):
Suppress harmless warnings.
</pre>
</div>
</content>
</entry>
<entry>
<title>Speed up unintern, and fix symbol shorthand edge case (bug#79035)</title>
<updated>2025-07-19T14:48:11+00:00</updated>
<author>
<name>Mattias Engdegård</name>
</author>
<published>2025-07-19T14:15:47+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=f4a9673f615aa8d1fad499784fdcd11ac0ec4042'/>
<id>f4a9673f615aa8d1fad499784fdcd11ac0ec4042</id>
<content type='text'>
Don't do a full lookup if the argument is a symbol, and only compute the
hash index once.  Fix a bug that occurred when there is another symbol
whose shorthand is equal to the true name of the symbol being removed.

* src/lread.c (Funintern): Rewrite for speed and correctness.
(oblookup_last_bucket_number, oblookup): Remove now unused variable.
* test/src/lread-tests.el (lread-unintern): New test.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Don't do a full lookup if the argument is a symbol, and only compute the
hash index once.  Fix a bug that occurred when there is another symbol
whose shorthand is equal to the true name of the symbol being removed.

* src/lread.c (Funintern): Rewrite for speed and correctness.
(oblookup_last_bucket_number, oblookup): Remove now unused variable.
* test/src/lread-tests.el (lread-unintern): New test.
</pre>
</div>
</content>
</entry>
<entry>
<title>; Fix last change.</title>
<updated>2025-07-17T07:40:33+00:00</updated>
<author>
<name>Eli Zaretskii</name>
</author>
<published>2025-07-17T07:40:33+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=ae560ae11c1d4b1ae5e130f3a942364dcaf69b62'/>
<id>ae560ae11c1d4b1ae5e130f3a942364dcaf69b62</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>; * test/src/fileio-tests.el (fileio-tests--read-directory): New test.</title>
<updated>2025-07-17T07:26:17+00:00</updated>
<author>
<name>Eli Zaretskii</name>
</author>
<published>2025-07-17T07:26:17+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=29324fd0fa3755028466966b6eeb3cd0df1b442f'/>
<id>29324fd0fa3755028466966b6eeb3cd0df1b442f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>; Fix 'threads-join-error' test</title>
<updated>2025-07-14T12:48:45+00:00</updated>
<author>
<name>Eli Zaretskii</name>
</author>
<published>2025-07-14T12:48:45+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=d0f96de277ff89adae4bc29ce934b7fca1d9bf00'/>
<id>d0f96de277ff89adae4bc29ce934b7fca1d9bf00</id>
<content type='text'>
* test/src/thread-tests.el (threads-thread-sleeps): New helper
function.
(threads-join-error): Fix to work as intended, and remove the
'unstable' tag.  (Bug#40823)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* test/src/thread-tests.el (threads-thread-sleeps): New helper
function.
(threads-join-error): Fix to work as intended, and remove the
'unstable' tag.  (Bug#40823)
</pre>
</div>
</content>
</entry>
<entry>
<title>* src/fns.c (Flength): Fix char table length off-by-one bug.</title>
<updated>2025-07-11T14:36:27+00:00</updated>
<author>
<name>Mattias Engdegård</name>
</author>
<published>2025-07-11T14:26:54+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=52b96d3a7e27e0cdc3f53041f2f18cbe2c095a86'/>
<id>52b96d3a7e27e0cdc3f53041f2f18cbe2c095a86</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Nativecomp don't materialize non-materializable objects (bug#78606)</title>
<updated>2025-07-09T15:32:07+00:00</updated>
<author>
<name>Andrea Corallo</name>
</author>
<published>2025-07-09T13:53:52+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=48a5917681dd53b8b75764f4e1455a6c24f95498'/>
<id>48a5917681dd53b8b75764f4e1455a6c24f95498</id>
<content type='text'>
The native compiler should not try to generate in rendered code
immediate floats produced by the constrain on the '=' operator.

* test/src/comp-tests.el (comp-test-78606-1): Add test.
* test/src/comp-resources/comp-test-funcs.el (comp-test-78606-1-f): New
function.
* src/comp.c (emit_mvar_rval): Check if an immediate is materializable.
* lisp/emacs-lisp/comp.el (comp-ctxt): Add 'non-materializable-objs-h'
slot.
(comp--fwprop-insn): Update call.
* lisp/emacs-lisp/comp-cstr.el (comp-cstr-=): Add parameter.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The native compiler should not try to generate in rendered code
immediate floats produced by the constrain on the '=' operator.

* test/src/comp-tests.el (comp-test-78606-1): Add test.
* test/src/comp-resources/comp-test-funcs.el (comp-test-78606-1-f): New
function.
* src/comp.c (emit_mvar_rval): Check if an immediate is materializable.
* lisp/emacs-lisp/comp.el (comp-ctxt): Add 'non-materializable-objs-h'
slot.
(comp--fwprop-insn): Update call.
* lisp/emacs-lisp/comp-cstr.el (comp-cstr-=): Add parameter.
</pre>
</div>
</content>
</entry>
</feed>
