From: Eli Zaretskii Date: Thu, 8 Dec 2016 18:47:27 +0000 (+0200) Subject: Fix compilation warnings X-Git-Tag: emacs-26.0.90~1144^2~9 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=54f52a1390c394f42203f39d0b4d73318203e092;p=emacs.git Fix compilation warnings * src/thread.c (Fmake_thread): Call emacs_abort, to avoid compilation warning. --- diff --git a/src/thread.c b/src/thread.c index 11d55a5caef..dda262984c0 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);