Mercurial > emacs
changeset 58523:4f9314a314aa
(Fdefvar): Declare pdl from last change as `volatile' to prevent
compiler warnings.
author | Eli Zaretskii <eliz@gnu.org> |
---|---|
date | Fri, 26 Nov 2004 11:47:20 +0000 |
parents | 4fa780e48a1f |
children | 92dc214c88ac |
files | src/eval.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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