diff options
| author | Stefan Monnier | 2013-11-06 13:41:31 -0500 |
|---|---|---|
| committer | Stefan Monnier | 2013-11-06 13:41:31 -0500 |
| commit | 2ec9db5d1e97275a2a4c27e04ed6f3e8c3382cab (patch) | |
| tree | c84a7a326b41b7e74e084cee68cb1fcfcf7b9131 /src/process.c | |
| parent | 6b4ac03ebef0dcd36699c34444ddce7a246c06aa (diff) | |
| download | emacs-2ec9db5d1e97275a2a4c27e04ed6f3e8c3382cab.tar.gz emacs-2ec9db5d1e97275a2a4c27e04ed6f3e8c3382cab.zip | |
* src/xdisp.c (syms_of_xdisp): New vars redisplay--all-windows-cause and
redisplay--mode-lines-cause.
(redisplay_internal): Keep them uptodate. Remove redundant check of
buffer_shared_and_changed.
* *.[chm]: Number every assignment to update_mode_lines so we
can track why it is set.
Diffstat (limited to 'src/process.c')
| -rw-r--r-- | src/process.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/process.c b/src/process.c index c0c522a1403..307eab3ab30 100644 --- a/src/process.c +++ b/src/process.c | |||
| @@ -5246,7 +5246,7 @@ DEFUN ("internal-default-process-filter", Finternal_default_process_filter, | |||
| 5246 | else | 5246 | else |
| 5247 | set_marker_both (p->mark, p->buffer, PT, PT_BYTE); | 5247 | set_marker_both (p->mark, p->buffer, PT, PT_BYTE); |
| 5248 | 5248 | ||
| 5249 | update_mode_lines++; | 5249 | update_mode_lines = 23; |
| 5250 | 5250 | ||
| 5251 | /* Make sure opoint and the old restrictions | 5251 | /* Make sure opoint and the old restrictions |
| 5252 | float ahead of any new text just as point would. */ | 5252 | float ahead of any new text just as point would. */ |
| @@ -6390,7 +6390,7 @@ status_notify (struct Lisp_Process *deleting_process) | |||
| 6390 | } | 6390 | } |
| 6391 | } /* end for */ | 6391 | } /* end for */ |
| 6392 | 6392 | ||
| 6393 | update_mode_lines++; /* In case buffers use %s in mode-line-format. */ | 6393 | update_mode_lines = 24; /* In case buffers use %s in mode-line-format. */ |
| 6394 | UNGCPRO; | 6394 | UNGCPRO; |
| 6395 | } | 6395 | } |
| 6396 | 6396 | ||