comparison src/eval.c @ 69158:812b2bed63c2

(specpdl_ptr): Remove volatile qualifier for consistency with lisp.h.
author Luc Teirlinck <teirllm@auburn.edu>
date Sun, 26 Feb 2006 18:08:02 +0000
parents f2147c1027b6
children 2a8938fd785e 5754737d1e04
comparison
equal deleted inserted replaced
69157:76d55cdb7481 69158:812b2bed63c2
115 115
116 struct specbinding *specpdl; 116 struct specbinding *specpdl;
117 117
118 /* Pointer to first unused element in specpdl. */ 118 /* Pointer to first unused element in specpdl. */
119 119
120 volatile struct specbinding *specpdl_ptr; 120 struct specbinding *specpdl_ptr;
121 121
122 /* Maximum size allowed for specpdl allocation */ 122 /* Maximum size allowed for specpdl allocation */
123 123
124 EMACS_INT max_specpdl_size; 124 EMACS_INT max_specpdl_size;
125 125