home *** CD-ROM | disk | FTP | other *** search
/ vim.ftp.fu-berlin.de / 2015-02-03.vim.ftp.fu-berlin.de.tar / vim.ftp.fu-berlin.de / unix / vim-6.2.tar.bz2 / vim-6.2.tar / vim62 / src / proto / undo.pro < prev    next >
Encoding:
Text File  |  2003-06-01  |  638 b   |  19 lines

  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. void u_undo __ARGS((int count));
  8. void u_redo __ARGS((int count));
  9. void u_sync __ARGS((void));
  10. void u_unchanged __ARGS((buf_T *buf));
  11. void u_clearall __ARGS((buf_T *buf));
  12. void u_saveline __ARGS((linenr_T lnum));
  13. void u_clearline __ARGS((void));
  14. void u_undoline __ARGS((void));
  15. void u_blockfree __ARGS((buf_T *buf));
  16. int bufIsChanged __ARGS((buf_T *buf));
  17. int curbufIsChanged __ARGS((void));
  18. /* vim: set ft=c : */
  19.