]> git.eshelyaron.com Git - emacs.git/commitdiff
Call error if thread creation failed.
authorTom Tromey <tromey@redhat.com>
Sat, 19 Sep 2009 21:59:51 +0000 (23:59 +0200)
committerGiuseppe Scrivano <gscrivano@gnu.org>
Sat, 19 Sep 2009 21:59:51 +0000 (23:59 +0200)
src/thread.c

index 6e447cb1143cbd0e36527fcd35cdf33a12e4e3a0..54cb2ec6d45d215a0228552eb38e56027e5a27c5 100644 (file)
@@ -347,7 +347,7 @@ does not try to get a lock on the current buffer.  */)
     {
       /* Restore the previous situation.  */
       all_threads = all_threads->next_thread;
-      error ("Cannot create new thread");
+      error ("Could not start a new thread");
     }
 
   return Qnil;