aboutsummaryrefslogtreecommitdiffstats
path: root/src/data.c
diff options
context:
space:
mode:
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