]> git.eshelyaron.com Git - emacs.git/commitdiff
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 211a64661ac70b24834200cdaf9bdc5b67ba4c67..b81d1b88545ecf4efd6d5ecb5baf9a53e5842f65 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 5fa9a945ef54dbf2f90f2713e848a4b75accb3e1..b4ef785b3c73a750173b887b32f5754ffbd20122 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)))