From eb8962758f87759d0b6e35c4b3c7660aebffcbd6 Mon Sep 17 00:00:00 2001 From: Stefan Monnier Date: Wed, 11 Mar 2026 13:46:43 -0400 Subject: [PATCH] etc/NEWS.26 (Changes in Emacs 26.1): List new names (for `C-h f`) --- etc/NEWS.26 | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/etc/NEWS.26 b/etc/NEWS.26 index 04909314257..53e3a205335 100644 --- a/etc/NEWS.26 +++ b/etc/NEWS.26 @@ -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.