mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-30 17:10:51 -08:00
(decode_mode_spec): Support %+.
This commit is contained in:
parent
456c617c0b
commit
5cc9f80d69
1 changed files with 5 additions and 0 deletions
|
|
@ -2839,6 +2839,11 @@ decode_mode_spec (w, c, maxwidth)
|
|||
return "*";
|
||||
return "-";
|
||||
|
||||
case '+':
|
||||
if (MODIFF > current_buffer->save_modified)
|
||||
return "*";
|
||||
return "-";
|
||||
|
||||
case 's':
|
||||
/* status of process */
|
||||
obj = Fget_buffer_process (Fcurrent_buffer ());
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue