diff options
author | Richard M. Stallman <rms@gnu.org> | 2001-12-16 20:01:13 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 2001-12-16 20:01:13 +0000 |
commit | 5e3093901acf1b886ce86b59fc60dc72ae0ab3c7 (patch) | |
tree | 9c920034e8dcde447d0073e5f24aeee9e9322f67 /src/buffer.h | |
parent | e5ecf6e91e04cc49daf3471d6775d21dd73b409d (diff) | |
download | emacs-5e3093901acf1b886ce86b59fc60dc72ae0ab3c7.tar.gz |
(struct buffer): New field `display_error_modiff'.
Diffstat (limited to 'src/buffer.h')
-rw-r--r-- | src/buffer.h | 5 |
1 files changed, 4 insertions, 1 deletions
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; |