1
Fork 0
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:
Richard M. Stallman 1994-02-13 02:06:55 +00:00
parent 456c617c0b
commit 5cc9f80d69

View file

@ -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 ());