Fix specpdl loop typo.
authorPaul Eggert <eggert@cs.ucla.edu>
Wed, 21 Sep 2011 20:15:56 +0000 (13:15 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Wed, 21 Sep 2011 20:15:56 +0000 (13:15 -0700)
src/data.c
src/eval.c

index 211a646..b81d1b8 100644 (file)
@@ -1094,7 +1094,7 @@ let_shadows_global_binding_p (Lisp_Object symbol)
 {
   struct specbinding *p;
 
-  for (p = specpdl_ptr; p > specpdl; p)
+  for (p = specpdl_ptr; p > specpdl; )
     if ((--p)->func == NULL && EQ (p->symbol, symbol))
       return 1;
 
index 5fa9a94..b4ef785 100644 (file)
@@ -758,7 +758,7 @@ The return value is BASE-VARIABLE.  */)
   {
     struct specbinding *p;
 
-    for (p = specpdl_ptr; p > specpdl; p)
+    for (p = specpdl_ptr; p > specpdl; )
       if ((--p)->func == NULL
          && (EQ (new_alias,
                  CONSP (p->symbol) ? XCAR (p->symbol) : p->symbol)))