From 03c8991ce85931dad358378b0d2ff17b7279b56d Mon Sep 17 00:00:00 2001 From: Tom Tromey Date: Fri, 11 Sep 2009 19:46:07 +0200 Subject: [PATCH] Fix another oversight in thread.c. --- src/thread.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)) -- 2.11.4.GIT