diff options
author | Richard M. Stallman <rms@gnu.org> | 1994-01-10 22:37:13 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1994-01-10 22:37:13 +0000 |
commit | 7b55a9e98f9d191c8471c73c47a0896eb358690e (patch) | |
tree | 3fd78372025b1d9d945baece6cd37eb0278d6d28 /src/buffer.h | |
parent | a67c5258fcafd8c81068abb2dc10d468a5122a9d (diff) | |
download | emacs-7b55a9e98f9d191c8471c73c47a0896eb358690e.tar.gz |
(struct buffer): New field auto_save_failure_time.
Diffstat (limited to 'src/buffer.h')
-rw-r--r-- | src/buffer.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/buffer.h b/src/buffer.h index 15f7c51f437..7d6e1475de9 100644 --- a/src/buffer.h +++ b/src/buffer.h @@ -172,6 +172,9 @@ struct buffer int modtime; /* the value of text.modiff at the last auto-save. */ int auto_save_modified; + /* 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; /* Position in buffer at which display started the last time this buffer was displayed */ int last_window_start; |