diff options
author | Bram Moolenaar <Bram@vim.org> | 2010-05-30 18:30:36 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2010-05-30 18:30:36 +0200 |
commit | a17d4c1934b008b9aa8a2d7cf085cfe76a690d9a (patch) | |
tree | 0698c081448b50f5c579252f34433da021de4984 /src/proto | |
parent | 504a82173c607f50801e90f8001bb2f1c13fecf9 (diff) | |
download | vim-a17d4c1934b008b9aa8a2d7cf085cfe76a690d9a.zip |
Added the undofile() function. Updated runtime files.
Diffstat (limited to 'src/proto')
-rw-r--r-- | src/proto/undo.pro | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/proto/undo.pro b/src/proto/undo.pro index 90e11d2bb..cea7d49c5 100644 --- a/src/proto/undo.pro +++ b/src/proto/undo.pro @@ -7,8 +7,9 @@ int u_inssub __ARGS((linenr_T lnum)); int u_savedel __ARGS((linenr_T lnum, long nlines)); int undo_allowed __ARGS((void)); void u_compute_hash __ARGS((char_u *hash)); -void u_read_undo __ARGS((char_u *name, 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_undo __ARGS((int count)); void u_redo __ARGS((int count)); void undo_time __ARGS((long step, int sec, int absolute)); |