From: Tom Tromey Date: Fri, 11 Sep 2009 17:46:07 +0000 (+0200) Subject: Fix another oversight in thread.c. X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=03c8991ce85931dad358378b0d2ff17b7279b56d;p=emacs.git Fix another oversight in thread.c. --- diff --git a/src/thread.c b/src/thread.c index d19172dcbe5..709e50e029a 100644 --- a/src/thread.c +++ b/src/thread.c @@ -215,7 +215,7 @@ When the function exits, the thread dies. */) for (p = specpdl; p != specpdl_ptr; ++p) { - if (p->func) + if (!p->func) { Lisp_Object sym = p->symbol; if (!SYMBOLP (sym))