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 / ex_eval.pro < prev    next >
Encoding:
Text File  |  2003-06-01  |  1.2 KB  |  29 lines

  1. /* ex_eval.c */
  2. int aborting __ARGS((void));
  3. int should_abort __ARGS((int retcode));
  4. int aborted_in_try __ARGS((void));
  5. int cause_errthrow __ARGS((char_u *msg, int severe, int *ignore));
  6. void do_errthrow __ARGS((struct condstack *cstack, char_u *cmdname));
  7. int do_intthrow __ARGS((struct condstack *cstack));
  8. void discard_current_exception __ARGS((void));
  9. void report_make_pending __ARGS((int pending, void *value));
  10. void report_resume_pending __ARGS((int pending, void *value));
  11. void report_discard_pending __ARGS((int pending, void *value));
  12. void ex_if __ARGS((exarg_T *eap));
  13. void ex_endif __ARGS((exarg_T *eap));
  14. void ex_else __ARGS((exarg_T *eap));
  15. void ex_while __ARGS((exarg_T *eap));
  16. void ex_continue __ARGS((exarg_T *eap));
  17. void ex_break __ARGS((exarg_T *eap));
  18. void ex_endwhile __ARGS((exarg_T *eap));
  19. void ex_throw __ARGS((exarg_T *eap));
  20. void do_throw __ARGS((struct condstack *cstack));
  21. void ex_try __ARGS((exarg_T *eap));
  22. void ex_catch __ARGS((exarg_T *eap));
  23. void ex_finally __ARGS((exarg_T *eap));
  24. void ex_endtry __ARGS((exarg_T *eap));
  25. int cleanup_conditionals __ARGS((struct condstack *cstack, int searched_cond, int inclusive));
  26. void ex_endfunction __ARGS((exarg_T *eap));
  27. int has_while_cmd __ARGS((char_u *p));
  28. /* vim: set ft=c : */
  29.