summaryrefslogtreecommitdiff
path: root/src/structs.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2006-03-14 23:04:27 +0000
committerBram Moolenaar <Bram@vim.org>2006-03-14 23:04:27 +0000
commita9a568ca773b0175baa1b5c031d3965ed2bcb560 (patch)
tree841bde674cc5512d7c67f9bc411d489dbe2e1495 /src/structs.h
parent2092d3223115ebd61502a90bdc6efbe7f424513d (diff)
downloadvim-git-a9a568ca773b0175baa1b5c031d3965ed2bcb560.tar.gz
updated for version 7.0224
Diffstat (limited to 'src/structs.h')
-rw-r--r--src/structs.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/structs.h b/src/structs.h
index 8f554fea0..26fee9a65 100644
--- a/src/structs.h
+++ b/src/structs.h
@@ -1249,13 +1249,16 @@ struct file_buffer
* The following only used in undo.c.
*/
u_header_T *b_u_oldhead; /* pointer to oldest header */
- u_header_T *b_u_newhead; /* pointer to newest header */
+ u_header_T *b_u_newhead; /* pointer to newest header; may not be valid
+ if b_u_curhead is not NULL */
u_header_T *b_u_curhead; /* pointer to current header */
int b_u_numhead; /* current number of headers */
int b_u_synced; /* entry lists are synced */
long b_u_seq_last; /* last used undo sequence number plus 1 */
long b_u_seq_cur; /* undo sequence number of last header used
plus 1 */
+ time_t b_u_seq_time; /* uh_time of the last header used plus 1 or
+ uh_time of current header */
/*
* variables for "U" command in undo.c