comparison src/emacs.c @ 43713:f92c4d87863a

Change defvar_int def and vars to use EMACS_INT instead of just int.
author Stefan Monnier <monnier@iro.umontreal.ca>
date Mon, 04 Mar 2002 23:41:00 +0000
parents ecb614567352
children 1a121be11dab
comparison
equal deleted inserted replaced
43712:223f1f5d160d 43713:f92c4d87863a
163 int inhibit_window_system; 163 int inhibit_window_system;
164 164
165 /* If nonzero, set Emacs to run at this priority. This is also used 165 /* If nonzero, set Emacs to run at this priority. This is also used
166 in child_setup and sys_suspend to make sure subshells run at normal 166 in child_setup and sys_suspend to make sure subshells run at normal
167 priority; those functions have their own extern declaration. */ 167 priority; those functions have their own extern declaration. */
168 int emacs_priority; 168 EMACS_INT emacs_priority;
169 169
170 /* If non-zero, a filter or a sentinel is running. Tested to save the match 170 /* If non-zero, a filter or a sentinel is running. Tested to save the match
171 data on the first attempt to change it inside asynchronous code. */ 171 data on the first attempt to change it inside asynchronous code. */
172 int running_asynch_code; 172 int running_asynch_code;
173 173