# HG changeset patch # User Eli Zaretskii # Date 1101469640 0 # Node ID 4f9314a314aab68d16d31bbf450c95c11d93c200 # Parent 4fa780e48a1f50eb6af9e0aaa8571e9c9e3e98f0 (Fdefvar): Declare pdl from last change as `volatile' to prevent compiler warnings. diff -r 4fa780e48a1f -r 4f9314a314aa src/eval.c --- a/src/eval.c Fri Nov 26 10:29:21 2004 +0000 +++ b/src/eval.c Fri Nov 26 11:47:20 2004 +0000 @@ -789,7 +789,7 @@ else { /* Check if there is really a global binding rather than just a let binding that shadows the global unboundness of the var. */ - struct specbinding *pdl = specpdl_ptr; + volatile struct specbinding *pdl = specpdl_ptr; while (--pdl >= specpdl) { if (EQ (pdl->symbol, sym) && !pdl->func