diff options
author | Bram Moolenaar <Bram@vim.org> | 2004-06-13 20:20:40 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2004-06-13 20:20:40 +0000 |
commit | 071d4279d6ab81b7187b48f3a0fc61e587b6db6c (patch) | |
tree | 221cbe3c40e043163c06f61c52a7ba2eb41e12ce /src/proto/undo.pro | |
parent | b4210b3bc14e2918f153a7307530fbe6eba659e1 (diff) | |
download | vim-git-071d4279d6ab81b7187b48f3a0fc61e587b6db6c.tar.gz |
updated for version 7.0001v7.0001
Diffstat (limited to 'src/proto/undo.pro')
-rw-r--r-- | src/proto/undo.pro | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/proto/undo.pro b/src/proto/undo.pro new file mode 100644 index 000000000..8ac23239e --- /dev/null +++ b/src/proto/undo.pro @@ -0,0 +1,18 @@ +/* undo.c */ +int u_save_cursor __ARGS((void)); +int u_save __ARGS((linenr_T top, linenr_T bot)); +int u_savesub __ARGS((linenr_T lnum)); +int u_inssub __ARGS((linenr_T lnum)); +int u_savedel __ARGS((linenr_T lnum, long nlines)); +void u_undo __ARGS((int count)); +void u_redo __ARGS((int count)); +void u_sync __ARGS((void)); +void u_unchanged __ARGS((buf_T *buf)); +void u_clearall __ARGS((buf_T *buf)); +void u_saveline __ARGS((linenr_T lnum)); +void u_clearline __ARGS((void)); +void u_undoline __ARGS((void)); +void u_blockfree __ARGS((buf_T *buf)); +int bufIsChanged __ARGS((buf_T *buf)); +int curbufIsChanged __ARGS((void)); +/* vim: set ft=c : */ |