blob: e5f28bec418e2080e69eb3c35219395a0638096e [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001/* undo.c */
Bram Moolenaar8bc78472007-05-06 12:26:25 +00002int u_save_cursor __ARGS((void));
3int u_save __ARGS((linenr_T top, linenr_T bot));
4int u_savesub __ARGS((linenr_T lnum));
5int u_inssub __ARGS((linenr_T lnum));
6int u_savedel __ARGS((linenr_T lnum, long nlines));
7int undo_allowed __ARGS((void));
Bram Moolenaar55debbe2010-05-23 23:34:36 +02008void u_compute_hash __ARGS((char_u *hash));
9void u_read_undo __ARGS((char_u *name, char_u *hash));
10void u_write_undo __ARGS((char_u *name, int forceit, buf_T *buf, char_u *hash));
Bram Moolenaar8bc78472007-05-06 12:26:25 +000011void u_undo __ARGS((int count));
12void u_redo __ARGS((int count));
13void undo_time __ARGS((long step, int sec, int absolute));
14void u_sync __ARGS((int force));
15void ex_undolist __ARGS((exarg_T *eap));
16void ex_undojoin __ARGS((exarg_T *eap));
17void u_unchanged __ARGS((buf_T *buf));
18void u_clearall __ARGS((buf_T *buf));
19void u_saveline __ARGS((linenr_T lnum));
20void u_clearline __ARGS((void));
21void u_undoline __ARGS((void));
22void u_blockfree __ARGS((buf_T *buf));
23int bufIsChanged __ARGS((buf_T *buf));
24int curbufIsChanged __ARGS((void));
Bram Moolenaar071d4272004-06-13 20:20:40 +000025/* vim: set ft=c : */