comparison src/proto/undo.pro @ 799:6beb2c667935

updated for version 7.0b
author vimboss
date Fri, 24 Mar 2006 22:21:52 +0000
parents c0f1b710ce07
children 6675076019ae
comparison
equal deleted inserted replaced
798:95dac6af3b3a 799:6beb2c667935
1 /* undo.c */ 1 /* undo.c */
2 int u_save_cursor __ARGS((void)); 2 extern int u_save_cursor __ARGS((void));
3 int u_save __ARGS((linenr_T top, linenr_T bot)); 3 extern int u_save __ARGS((linenr_T top, linenr_T bot));
4 int u_savesub __ARGS((linenr_T lnum)); 4 extern int u_savesub __ARGS((linenr_T lnum));
5 int u_inssub __ARGS((linenr_T lnum)); 5 extern int u_inssub __ARGS((linenr_T lnum));
6 int u_savedel __ARGS((linenr_T lnum, long nlines)); 6 extern int u_savedel __ARGS((linenr_T lnum, long nlines));
7 void u_undo __ARGS((int count)); 7 extern void u_undo __ARGS((int count));
8 void u_redo __ARGS((int count)); 8 extern void u_redo __ARGS((int count));
9 void undo_time __ARGS((long step, int sec, int absolute)); 9 extern void undo_time __ARGS((long step, int sec, int absolute));
10 void u_sync __ARGS((void)); 10 extern void u_sync __ARGS((void));
11 void ex_undolist __ARGS((exarg_T *eap)); 11 extern void ex_undolist __ARGS((exarg_T *eap));
12 void ex_undojoin __ARGS((exarg_T *eap)); 12 extern void ex_undojoin __ARGS((exarg_T *eap));
13 void u_unchanged __ARGS((buf_T *buf)); 13 extern void u_unchanged __ARGS((buf_T *buf));
14 void u_clearall __ARGS((buf_T *buf)); 14 extern void u_clearall __ARGS((buf_T *buf));
15 void u_saveline __ARGS((linenr_T lnum)); 15 extern void u_saveline __ARGS((linenr_T lnum));
16 void u_clearline __ARGS((void)); 16 extern void u_clearline __ARGS((void));
17 void u_undoline __ARGS((void)); 17 extern void u_undoline __ARGS((void));
18 void u_blockfree __ARGS((buf_T *buf)); 18 extern void u_blockfree __ARGS((buf_T *buf));
19 int bufIsChanged __ARGS((buf_T *buf)); 19 extern int bufIsChanged __ARGS((buf_T *buf));
20 int curbufIsChanged __ARGS((void)); 20 extern int curbufIsChanged __ARGS((void));
21 /* vim: set ft=c : */ 21 /* vim: set ft=c : */