1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-03-11 17:31:35 -07:00

etc/NEWS.26 (Changes in Emacs 26.1): List new names (for C-h f)

This commit is contained in:
Stefan Monnier 2026-03-11 13:46:43 -04:00
parent 771ab21367
commit eb8962758f

View file

@ -309,6 +309,14 @@ explicitly yields. Global variables are shared among all threads, but
a 'let' binding is thread-local. Each thread also has its own current
buffer and its own match data.
New functions: 'make-thread', 'thread-alive-p', 'thread-signal',
'thread-name', 'thread-yield', 'current-thread', 'thread-join',
'all-threads', 'thread-last-error',
'make-mutex', 'mutex-lock', 'mutex-unlock', 'mutex-name',
'make-condition-variable', 'condition-wait', 'condition-notify',
'condition-mutex', 'condition-name'.
New var: 'main-thread'.
See the chapter "(elisp) Threads" in the Elisp manual for full
documentation of these facilities.