Merged from the latest developing branch.
[MacVim.git] / src / proto / undo.pro
blobe712f03ae1dbb7c0341f2909fdcfdc910f4fc271
1 /* undo.c */
2 int u_save_cursor __ARGS((void));
3 int u_save __ARGS((linenr_T top, linenr_T bot));
4 int u_savesub __ARGS((linenr_T lnum));
5 int u_inssub __ARGS((linenr_T lnum));
6 int u_savedel __ARGS((linenr_T lnum, long nlines));
7 int undo_allowed __ARGS((void));
8 void u_undo __ARGS((int count));
9 void u_redo __ARGS((int count));
10 void undo_time __ARGS((long step, int sec, int absolute));
11 void u_sync __ARGS((int force));
12 void ex_undolist __ARGS((exarg_T *eap));
13 void ex_undojoin __ARGS((exarg_T *eap));
14 void u_unchanged __ARGS((buf_T *buf));
15 void u_clearall __ARGS((buf_T *buf));
16 void u_saveline __ARGS((linenr_T lnum));
17 void u_clearline __ARGS((void));
18 void u_undoline __ARGS((void));
19 void u_blockfree __ARGS((buf_T *buf));
20 int bufIsChanged __ARGS((buf_T *buf));
21 int curbufIsChanged __ARGS((void));
22 /* vim: set ft=c : */