]> git.eshelyaron.com Git - emacs.git/commitdiff
Remove obsolete thread-alive-p
authorMichael Albinus <michael.albinus@gmx.de>
Thu, 9 Jan 2020 12:40:14 +0000 (13:40 +0100)
committerMichael Albinus <michael.albinus@gmx.de>
Thu, 9 Jan 2020 12:40:14 +0000 (13:40 +0100)
* etc/NEWS (thread-alive-p):
* lisp/thread.el (thread-alive-p):
* src/thread.c (thread-alive-p): Remove.

etc/NEWS
lisp/thread.el
src/thread.c

index 0784160ce22ac4ec411bd674c0c134c6dc7d84af..b87202014d2ed9110774da019a56d4d4a2ecfe5e 100644 (file)
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -44,10 +44,12 @@ applies, and please also update docstrings as needed.
 
 ** 'equal' no longer examines some contents of window configurations.
 Instead, it considers window configurations to be equal only if they
-are eq.  To compare contents, use compare-window-configurations
-instead.  This change helps fix a bug in sxhash-equal, which returned
+are 'eq'.  To compare contents, use 'compare-window-configurations'
+instead.  This change helps fix a bug in 'sxhash-equal', which returned
 incorrect hashes for window configurations and some other objects.
 
+** The obsolete function 'thread-alive-p' has been removed.
+
 \f
 * Lisp Changes in Emacs 28.1
 
index d40d7bed53872b348b0ed3f73028717c23ba8217..00a0084f81f4e00f19006f2dfbb04564abece7f9 100644 (file)
@@ -43,8 +43,6 @@ An EVENT has the format
             (err (cddr event)))
         (message "Error %s: %S" thread err))))
 
-(make-obsolete 'thread-alive-p 'thread-live-p "27.1")
-
 ;;; The thread list buffer and list-threads command
 
 (defcustom thread-list-refresh-seconds 0.5
index c7fe061426916d82ca43dabd259af2f960e9315f..df1a7053826f40a3d95a640df2e5009f05ad83be 100644 (file)
@@ -1114,9 +1114,6 @@ syms_of_threads (void)
       staticpro (&last_thread_error);
       last_thread_error = Qnil;
 
-      Fdefalias (intern_c_string ("thread-alive-p"),
-                intern_c_string ("thread-live-p"), Qnil);
-
       Fprovide (intern_c_string ("threads"), Qnil);
     }