aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1994-01-10 22:37:13 +0000
committerRichard M. Stallman1994-01-10 22:37:13 +0000
commit4c0dc722280ebefb0921c178a2e80aeb219038a4 (patch)
tree13383ead735316134f1e7a73aa53efe424a46cc8 /src
parentca325161005f717d0c4aa0ee7ddb345f43e9d12e (diff)
downloademacs-4c0dc722280ebefb0921c178a2e80aeb219038a4.tar.gz
emacs-4c0dc722280ebefb0921c178a2e80aeb219038a4.zip
(struct buffer): New field auto_save_failure_time.
Diffstat (limited to 'src')
-rw-r--r--src/buffer.h3
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
172 int modtime; 172 int modtime;
173 /* the value of text.modiff at the last auto-save. */ 173 /* the value of text.modiff at the last auto-save. */
174 int auto_save_modified; 174 int auto_save_modified;
175 /* The time at which we detected a failure to auto-save,
176 Or -1 if we didn't have a failure. */
177 int auto_save_failure_time;
175 /* Position in buffer at which display started 178 /* Position in buffer at which display started
176 the last time this buffer was displayed */ 179 the last time this buffer was displayed */
177 int last_window_start; 180 int last_window_start;