diff options
Diffstat (limited to 'src/process.c')
| -rw-r--r-- | src/process.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/process.c b/src/process.c index f4613be28ed..26f26c30240 100644 --- a/src/process.c +++ b/src/process.c | |||
| @@ -6694,10 +6694,12 @@ status_notify (struct Lisp_Process *deleting_process, | |||
| 6694 | p->update_tick = p->tick; | 6694 | p->update_tick = p->tick; |
| 6695 | /* Now output the message suitably. */ | 6695 | /* Now output the message suitably. */ |
| 6696 | exec_sentinel (proc, msg); | 6696 | exec_sentinel (proc, msg); |
| 6697 | if (BUFFERP (p->buffer)) | ||
| 6698 | /* In case it uses %s in mode-line-format. */ | ||
| 6699 | bset_update_mode_line (XBUFFER (p->buffer)); | ||
| 6697 | } | 6700 | } |
| 6698 | } /* end for */ | 6701 | } /* end for */ |
| 6699 | 6702 | ||
| 6700 | update_mode_lines = 24; /* In case buffers use %s in mode-line-format. */ | ||
| 6701 | return got_some_output; | 6703 | return got_some_output; |
| 6702 | } | 6704 | } |
| 6703 | 6705 | ||