From: Richard M. Stallman Date: Sun, 16 Dec 2001 20:01:13 +0000 (+0000) Subject: (struct buffer): New field `display_error_modiff'. X-Git-Tag: ttn-vms-21-2-B4~17679 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=5e3093901acf1b886ce86b59fc60dc72ae0ab3c7;p=emacs.git (struct buffer): New field `display_error_modiff'. --- diff --git a/src/buffer.h b/src/buffer.h index 5b86bce1484..b6e636e7873 100644 --- a/src/buffer.h +++ b/src/buffer.h @@ -493,8 +493,11 @@ struct buffer 0 means visited file modtime unknown; in no case complain about any mismatch on next save attempt. */ int modtime; - /* the value of text->modiff at the last auto-save. */ + /* The value of text->modiff at the last auto-save. */ int auto_save_modified; + /* The value of text->modiff at the last display error. + Redisplay of this buffer is inhibited until it changes again. */ + int display_error_modiff; /* The time at which we detected a failure to auto-save, Or -1 if we didn't have a failure. */ int auto_save_failure_time;