summaryrefslogtreecommitdiff
path: root/src/proto
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2005-01-05 22:16:17 +0000
committerBram Moolenaar <Bram@vim.org>2005-01-05 22:16:17 +0000
commit1280586e4b3b88e2ce0e9a66c49950b0768fa3a9 (patch)
tree7d29948f64769942ecd5c50fd80d9fa1d41ae5fa /src/proto
parent06fb435a1c43a1ba114370bc59d8362830885513 (diff)
downloadvim-git-1280586e4b3b88e2ce0e9a66c49950b0768fa3a9.tar.gz
updated for version 7.0031
Diffstat (limited to 'src/proto')
-rw-r--r--src/proto/eval.pro9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/proto/eval.pro b/src/proto/eval.pro
index 1cd2f8e05..64fb62a52 100644
--- a/src/proto/eval.pro
+++ b/src/proto/eval.pro
@@ -20,6 +20,9 @@ void *save_funccal __ARGS((void));
void restore_funccal __ARGS((void *fc));
int eval_foldexpr __ARGS((char_u *arg, int *cp));
void ex_let __ARGS((exarg_T *eap));
+void *eval_for_line __ARGS((char_u *arg, int *errp, char_u **nextcmdp, int skip));
+int next_for_item __ARGS((void *fi_void, char_u *arg));
+void free_for_info __ARGS((void *fi_void));
void set_context_for_expression __ARGS((expand_T *xp, char_u *arg, cmdidx_T cmdidx));
void ex_call __ARGS((exarg_T *eap));
void ex_unlet __ARGS((exarg_T *eap));
@@ -47,9 +50,9 @@ void ex_function __ARGS((exarg_T *eap));
char_u *get_user_func_name __ARGS((expand_T *xp, int idx));
void ex_delfunction __ARGS((exarg_T *eap));
void ex_return __ARGS((exarg_T *eap));
-int do_return __ARGS((exarg_T *eap, int reanimate, int is_cmd, void *value));
-void discard_pending_return __ARGS((void *retvar));
-char_u *get_return_cmd __ARGS((void *retvar));
+int do_return __ARGS((exarg_T *eap, int reanimate, int is_cmd, void *rettv));
+void discard_pending_return __ARGS((void *rettv));
+char_u *get_return_cmd __ARGS((void *rettv));
char_u *get_func_line __ARGS((int c, void *cookie, int indent));
int func_has_ended __ARGS((void *cookie));
int func_has_abort __ARGS((void *cookie));