# HG changeset patch # User Richard M. Stallman # Date 775600616 0 # Node ID 1c42688133eef268cb780f1fa919a6592d5dc895 # Parent 7d471f6a99392ceb155d4a5687332e63011e89e7 (decode_mode_spec): Handle %&. diff -r 7d471f6a9939 -r 1c42688133ee src/xdisp.c --- a/src/xdisp.c Sat Jul 30 07:46:42 1994 +0000 +++ b/src/xdisp.c Sat Jul 30 20:36:56 1994 +0000 @@ -2968,6 +2968,12 @@ return "%"; return "-"; + case '&': + /* This differs from %* in ignoring read-only-ness. */ + if (MODIFF > current_buffer->save_modified) + return "*"; + return "-"; + case 's': /* status of process */ obj = Fget_buffer_process (Fcurrent_buffer ());