]> git.eshelyaron.com Git - emacs.git/commitdiff
(struct buffer): New field `display_error_modiff'.
authorRichard M. Stallman <rms@gnu.org>
Sun, 16 Dec 2001 20:01:13 +0000 (20:01 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sun, 16 Dec 2001 20:01:13 +0000 (20:01 +0000)
src/buffer.h

index 5b86bce14843493bf99b0c633124a279f6eb810b..b6e636e7873f0760db5fe8035bb13fc25b5fafa7 100644 (file)
@@ -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;