emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] test-concurrency 54f52a1: Fix compilation warnings


From: Eli Zaretskii
Subject: [Emacs-diffs] test-concurrency 54f52a1: Fix compilation warnings
Date: Thu, 8 Dec 2016 18:48:22 +0000 (UTC)

branch: test-concurrency
commit 54f52a1390c394f42203f39d0b4d73318203e092
Author: Eli Zaretskii <address@hidden>
Commit: Eli Zaretskii <address@hidden>

    Fix compilation warnings
    
    * src/thread.c (Fmake_thread): Call emacs_abort, to avoid
    compilation warning.
---
 src/thread.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/thread.c b/src/thread.c
index 11d55a5..dda2629 100644
--- a/src/thread.c
+++ b/src/thread.c
@@ -689,7 +689,7 @@ If NAME is given, it names the new thread.  */)
 
   /* Can't start a thread in temacs.  */
   if (!initialized)
-    abort ();
+    emacs_abort ();
 
   if (!NILP (name))
     CHECK_STRING (name);



reply via email to

[Prev in Thread] Current Thread [Next in Thread]