1
0
forked from aniani/vim

updated for version 7.1-130

This commit is contained in:
Bram Moolenaar
2007-10-01 20:54:15 +00:00
parent 41a0903523
commit fecb660578
3 changed files with 142 additions and 4 deletions

View File

@@ -278,6 +278,9 @@ struct u_entry
linenr_T ue_lcount; /* linecount when u_save called */
char_u **ue_array; /* array of lines in undo block */
long ue_size; /* number of lines in ue_array */
#ifdef U_DEBUG
int ue_magic; /* magic number to check allocation */
#endif
};
struct u_header
@@ -300,6 +303,9 @@ struct u_header
visualinfo_T uh_visual; /* Visual areas before undo/after redo */
#endif
time_t uh_time; /* timestamp when the change was made */
#ifdef U_DEBUG
int uh_magic; /* magic number to check allocation */
#endif
};
/* values for uh_flags */