diff options
| author | Richard M. Stallman | 2001-12-16 20:01:13 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2001-12-16 20:01:13 +0000 |
| commit | 5e3093901acf1b886ce86b59fc60dc72ae0ab3c7 (patch) | |
| tree | 9c920034e8dcde447d0073e5f24aeee9e9322f67 /src/buffer.h | |
| parent | e5ecf6e91e04cc49daf3471d6775d21dd73b409d (diff) | |
| download | emacs-5e3093901acf1b886ce86b59fc60dc72ae0ab3c7.tar.gz emacs-5e3093901acf1b886ce86b59fc60dc72ae0ab3c7.zip | |
(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 | |||
| 493 | 0 means visited file modtime unknown; in no case complain | 493 | 0 means visited file modtime unknown; in no case complain |
| 494 | about any mismatch on next save attempt. */ | 494 | about any mismatch on next save attempt. */ |
| 495 | int modtime; | 495 | int modtime; |
| 496 | /* the value of text->modiff at the last auto-save. */ | 496 | /* The value of text->modiff at the last auto-save. */ |
| 497 | int auto_save_modified; | 497 | int auto_save_modified; |
| 498 | /* The value of text->modiff at the last display error. | ||
| 499 | Redisplay of this buffer is inhibited until it changes again. */ | ||
| 500 | int display_error_modiff; | ||
| 498 | /* The time at which we detected a failure to auto-save, | 501 | /* The time at which we detected a failure to auto-save, |
| 499 | Or -1 if we didn't have a failure. */ | 502 | Or -1 if we didn't have a failure. */ |
| 500 | int auto_save_failure_time; | 503 | int auto_save_failure_time; |