summaryrefslogtreecommitdiff
path: root/src/proto
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2010-05-30 20:40:11 +0200
committerBram Moolenaar <Bram@vim.org>2010-05-30 20:40:11 +0200
commit6ed8ed84f970dd2cdb7cbcb71746665cece4d063 (patch)
treed0e47372810fec843ef0f95505737275bf5264d8 /src/proto
parentfd3e5dc97f06e54220a2c5b65980dd6adc2c5555 (diff)
downloadvim-git-6ed8ed84f970dd2cdb7cbcb71746665cece4d063.tar.gz
Made reading/writing undo info a bit more robust.
Diffstat (limited to 'src/proto')
-rw-r--r--src/proto/undo.pro2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/proto/undo.pro b/src/proto/undo.pro
index cea7d49c5..baa98c4f8 100644
--- a/src/proto/undo.pro
+++ b/src/proto/undo.pro
@@ -9,7 +9,7 @@ int undo_allowed __ARGS((void));
void u_compute_hash __ARGS((char_u *hash));
char_u *u_get_undo_file_name __ARGS((char_u *buf_ffname, int reading));
void u_write_undo __ARGS((char_u *name, int forceit, buf_T *buf, char_u *hash));
-void u_read_undo __ARGS((char_u *name, char_u *hash));
+void u_read_undo __ARGS((char_u *name, char_u *hash, char_u *orig_name));
void u_undo __ARGS((int count));
void u_redo __ARGS((int count));
void undo_time __ARGS((long step, int sec, int absolute));