diff options
| author | Gerd Moellmann | 2001-04-06 09:09:39 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 2001-04-06 09:09:39 +0000 |
| commit | 869fb12c1d0ac8128d9a31a87dac64e6a8411056 (patch) | |
| tree | 420fe22bdf3a2de4a4c3ad84ad21f586430ebe5f /src | |
| parent | b20a1c885b9ea585bc30a25eab56f6639cb80768 (diff) | |
| download | emacs-869fb12c1d0ac8128d9a31a87dac64e6a8411056.tar.gz emacs-869fb12c1d0ac8128d9a31a87dac64e6a8411056.zip | |
(Qinhibit_eval_during_redisplay): Make it a Lisp_Object.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/xdisp.c | 3 |
2 files changed, 6 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index f4f6043a014..6aadb3184e9 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2001-04-06 Gerd Moellmann <gerd@gnu.org> | ||
| 2 | |||
| 3 | * xdisp.c (Qinhibit_eval_during_redisplay): Make it a Lisp_Object. | ||
| 4 | |||
| 1 | 2001-04-05 Gerd Moellmann <gerd@gnu.org> | 5 | 2001-04-05 Gerd Moellmann <gerd@gnu.org> |
| 2 | 6 | ||
| 3 | * sysdep.c (getwd) [!HAVE_GETWD]: Unblock input before returning. | 7 | * sysdep.c (getwd) [!HAVE_GETWD]: Unblock input before returning. |
diff --git a/src/xdisp.c b/src/xdisp.c index 4b26633c7e7..2a17d947216 100644 --- a/src/xdisp.c +++ b/src/xdisp.c | |||
| @@ -226,6 +226,7 @@ Lisp_Object Qinhibit_point_motion_hooks; | |||
| 226 | Lisp_Object QCeval, Qwhen, QCfile, QCdata; | 226 | Lisp_Object QCeval, Qwhen, QCfile, QCdata; |
| 227 | Lisp_Object Qfontified; | 227 | Lisp_Object Qfontified; |
| 228 | Lisp_Object Qgrow_only; | 228 | Lisp_Object Qgrow_only; |
| 229 | Lisp_Object Qinhibit_eval_during_redisplay; | ||
| 229 | 230 | ||
| 230 | /* Functions called to fontify regions of text. */ | 231 | /* Functions called to fontify regions of text. */ |
| 231 | 232 | ||
| @@ -256,7 +257,7 @@ Lisp_Object Vinhibit_redisplay, Qinhibit_redisplay; | |||
| 256 | 257 | ||
| 257 | /* Non-zero means Lisp evaluation during redisplay is inhibited. */ | 258 | /* Non-zero means Lisp evaluation during redisplay is inhibited. */ |
| 258 | 259 | ||
| 259 | int inhibit_eval_during_redisplay, Qinhibit_eval_during_redisplay; | 260 | int inhibit_eval_during_redisplay; |
| 260 | 261 | ||
| 261 | /* Names of text properties relevant for redisplay. */ | 262 | /* Names of text properties relevant for redisplay. */ |
| 262 | 263 | ||