aboutsummaryrefslogtreecommitdiffstats
path: root/src/data.c
diff options
context:
space:
mode:
authorPaul Eggert2011-09-21 13:15:56 -0700
committerPaul Eggert2011-09-21 13:15:56 -0700
commitbc9851415e121c2c0416252c97e23add9d80c482 (patch)
tree65327b02f8b26ea0a8e8e9c316a94208daae49df /src/data.c
parent45c2afd612c04eb594aad53c7292a93ebfa367be (diff)
downloademacs-bc9851415e121c2c0416252c97e23add9d80c482.tar.gz
emacs-bc9851415e121c2c0416252c97e23add9d80c482.zip
Fix specpdl loop typo.
Diffstat (limited to 'src/data.c')
-rw-r--r--src/data.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/data.c b/src/data.c
index 211a64661ac..b81d1b88545 100644
--- a/src/data.c
+++ b/src/data.c
@@ -1094,7 +1094,7 @@ let_shadows_global_binding_p (Lisp_Object symbol)
1094{ 1094{
1095 struct specbinding *p; 1095 struct specbinding *p;
1096 1096
1097 for (p = specpdl_ptr; p > specpdl; p) 1097 for (p = specpdl_ptr; p > specpdl; )
1098 if ((--p)->func == NULL && EQ (p->symbol, symbol)) 1098 if ((--p)->func == NULL && EQ (p->symbol, symbol))
1099 return 1; 1099 return 1;
1100 1100