blob: 6f6b8c21894ddb866411d2dda027323cb909885a [file] [log] [blame]
Bram Moolenaaredf3f972016-08-29 22:49:24 +02001/* vi:set ts=8 sts=4 sw=4 noet:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002 *
3 * VIM - Vi IMproved by Bram Moolenaar
4 *
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 * See README.txt for an overview of the Vim source code.
8 */
9
10/*
11 * ex_eval.c: functions for Ex command line for the +eval feature.
12 */
13
14#include "vim.h"
15
16#if defined(FEAT_EVAL) || defined(PROTO)
17
Bram Moolenaarddef1292019-12-16 17:10:33 +010018static char *get_end_emsg(cstack_T *cstack);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019
20/*
21 * Exception handling terms:
22 *
23 * :try ":try" command \
24 * ... try block |
25 * :catch RE ":catch" command |
26 * ... catch clause |- try conditional
27 * :finally ":finally" command |
28 * ... finally clause |
29 * :endtry ":endtry" command /
30 *
31 * The try conditional may have any number of catch clauses and at most one
32 * finally clause. A ":throw" command can be inside the try block, a catch
33 * clause, the finally clause, or in a function called or script sourced from
34 * there or even outside the try conditional. Try conditionals may be nested.
35 */
36
37/*
38 * Configuration whether an exception is thrown on error or interrupt. When
39 * the preprocessor macros below evaluate to FALSE, an error (did_emsg) or
40 * interrupt (got_int) under an active try conditional terminates the script
41 * after the non-active finally clauses of all active try conditionals have been
42 * executed. Otherwise, errors and/or interrupts are converted into catchable
43 * exceptions (did_throw additionally set), which terminate the script only if
44 * not caught. For user exceptions, only did_throw is set. (Note: got_int can
Bram Moolenaar84a05ac2013-05-06 04:24:17 +020045 * be set asynchronously afterwards by a SIGINT, so did_throw && got_int is not
Bram Moolenaar071d4272004-06-13 20:20:40 +000046 * a reliant test that the exception currently being thrown is an interrupt
47 * exception. Similarly, did_emsg can be set afterwards on an error in an
48 * (unskipped) conditional command inside an inactive conditional, so did_throw
49 * && did_emsg is not a reliant test that the exception currently being thrown
50 * is an error exception.) - The macros can be defined as expressions checking
51 * for a variable that is allowed to be changed during execution of a script.
52 */
53#if 0
Bram Moolenaar217e1b82019-12-01 21:41:28 +010054// Expressions used for testing during the development phase.
Bram Moolenaar071d4272004-06-13 20:20:40 +000055# define THROW_ON_ERROR (!eval_to_number("$VIMNOERRTHROW"))
56# define THROW_ON_INTERRUPT (!eval_to_number("$VIMNOINTTHROW"))
57# define THROW_TEST
58#else
Bram Moolenaar217e1b82019-12-01 21:41:28 +010059// Values used for the Vim release.
Bram Moolenaar071d4272004-06-13 20:20:40 +000060# define THROW_ON_ERROR TRUE
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000061# define THROW_ON_ERROR_TRUE
Bram Moolenaar071d4272004-06-13 20:20:40 +000062# define THROW_ON_INTERRUPT TRUE
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000063# define THROW_ON_INTERRUPT_TRUE
Bram Moolenaar071d4272004-06-13 20:20:40 +000064#endif
65
Bram Moolenaar071d4272004-06-13 20:20:40 +000066/*
67 * When several errors appear in a row, setting "force_abort" is delayed until
68 * the failing command returned. "cause_abort" is set to TRUE meanwhile, in
69 * order to indicate that situation. This is useful when "force_abort" was set
70 * during execution of a function call from an expression: the aborting of the
71 * expression evaluation is done without producing any error messages, but all
72 * error messages on parsing errors during the expression evaluation are given
73 * (even if a try conditional is active).
74 */
75static int cause_abort = FALSE;
76
77/*
Bram Moolenaarccc18222007-05-10 18:25:20 +000078 * Return TRUE when immediately aborting on error, or when an interrupt
Bram Moolenaar071d4272004-06-13 20:20:40 +000079 * occurred or an exception was thrown but not caught. Use for ":{range}call"
80 * to check whether an aborted function that does not handle a range itself
81 * should be called again for the next line in the range. Also used for
82 * cancelling expression evaluation after a function call caused an immediate
83 * abort. Note that the first emsg() call temporarily resets "force_abort"
84 * until the throw point for error messages has been reached. That is, during
85 * cancellation of an expression evaluation after an aborting function call or
86 * due to a parsing error, aborting() always returns the same value.
Bram Moolenaar67a2deb2019-11-25 00:05:32 +010087 * "got_int" is also set by calling interrupt().
Bram Moolenaar071d4272004-06-13 20:20:40 +000088 */
89 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +010090aborting(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +000091{
92 return (did_emsg && force_abort) || got_int || did_throw;
93}
94
95/*
96 * The value of "force_abort" is temporarily reset by the first emsg() call
97 * during an expression evaluation, and "cause_abort" is used instead. It might
98 * be necessary to restore "force_abort" even before the throw point for the
99 * error message has been reached. update_force_abort() should be called then.
100 */
101 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +0100102update_force_abort(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000103{
104 if (cause_abort)
105 force_abort = TRUE;
106}
107
108/*
109 * Return TRUE if a command with a subcommand resulting in "retcode" should
110 * abort the script processing. Can be used to suppress an autocommand after
111 * execution of a failing subcommand as long as the error message has not been
112 * displayed and actually caused the abortion.
113 */
114 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +0100115should_abort(int retcode)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000116{
117 return ((retcode == FAIL && trylevel != 0 && !emsg_silent) || aborting());
118}
119
120/*
121 * Return TRUE if a function with the "abort" flag should not be considered
122 * ended on an error. This means that parsing commands is continued in order
123 * to find finally clauses to be executed, and that some errors in skipped
124 * commands are still reported.
125 */
126 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +0100127aborted_in_try(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000128{
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100129 // This function is only called after an error. In this case, "force_abort"
130 // determines whether searching for finally clauses is necessary.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000131 return force_abort;
132}
133
134/*
135 * cause_errthrow(): Cause a throw of an error exception if appropriate.
136 * Return TRUE if the error message should not be displayed by emsg().
137 * Sets "ignore", if the emsg() call should be ignored completely.
138 *
139 * When several messages appear in the same command, the first is usually the
140 * most specific one and used as the exception value. The "severe" flag can be
141 * set to TRUE, if a later but severer message should be used instead.
142 */
143 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +0100144cause_errthrow(
145 char_u *mesg,
146 int severe,
147 int *ignore)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000148{
Bram Moolenaar25e0f582020-05-25 22:36:50 +0200149 msglist_T *elem;
150 msglist_T **plist;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000151
152 /*
Bram Moolenaar57657d82006-04-21 22:12:41 +0000153 * Do nothing when displaying the interrupt message or reporting an
154 * uncaught exception (which has already been discarded then) at the top
155 * level. Also when no exception can be thrown. The message will be
156 * displayed by emsg().
Bram Moolenaar071d4272004-06-13 20:20:40 +0000157 */
158 if (suppress_errthrow)
159 return FALSE;
160
161 /*
Bram Moolenaar57657d82006-04-21 22:12:41 +0000162 * If emsg() has not been called previously, temporarily reset
163 * "force_abort" until the throw point for error messages has been
164 * reached. This ensures that aborting() returns the same value for all
165 * errors that appear in the same command. This means particularly that
166 * for parsing errors during expression evaluation emsg() will be called
167 * multiply, even when the expression is evaluated from a finally clause
168 * that was activated due to an aborting error, interrupt, or exception.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000169 */
170 if (!did_emsg)
171 {
172 cause_abort = force_abort;
173 force_abort = FALSE;
174 }
175
176 /*
177 * If no try conditional is active and no exception is being thrown and
178 * there has not been an error in a try conditional or a throw so far, do
Bram Moolenaar57657d82006-04-21 22:12:41 +0000179 * nothing (for compatibility of non-EH scripts). The message will then
180 * be displayed by emsg(). When ":silent!" was used and we are not
181 * currently throwing an exception, do nothing. The message text will
182 * then be stored to v:errmsg by emsg() without displaying it.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000183 */
184 if (((trylevel == 0 && !cause_abort) || emsg_silent) && !did_throw)
185 return FALSE;
186
187 /*
188 * Ignore an interrupt message when inside a try conditional or when an
Bram Moolenaar57657d82006-04-21 22:12:41 +0000189 * exception is being thrown or when an error in a try conditional or
190 * throw has been detected previously. This is important in order that an
Bram Moolenaar071d4272004-06-13 20:20:40 +0000191 * interrupt exception is catchable by the innermost try conditional and
192 * not replaced by an interrupt message error exception.
193 */
194 if (mesg == (char_u *)_(e_interr))
195 {
196 *ignore = TRUE;
197 return TRUE;
198 }
199
200 /*
201 * Ensure that all commands in nested function calls and sourced files
202 * are aborted immediately.
203 */
204 cause_abort = TRUE;
205
206 /*
207 * When an exception is being thrown, some commands (like conditionals) are
208 * not skipped. Errors in those commands may affect what of the subsequent
209 * commands are regarded part of catch and finally clauses. Catching the
210 * exception would then cause execution of commands not intended by the
211 * user, who wouldn't even get aware of the problem. Therefor, discard the
212 * exception currently being thrown to prevent it from being caught. Just
213 * execute finally clauses and terminate.
214 */
215 if (did_throw)
216 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100217 // When discarding an interrupt exception, reset got_int to prevent the
218 // same interrupt being converted to an exception again and discarding
219 // the error exception we are about to throw here.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000220 if (current_exception->type == ET_INTERRUPT)
221 got_int = FALSE;
222 discard_current_exception();
223 }
224
225#ifdef THROW_TEST
226 if (!THROW_ON_ERROR)
227 {
228 /*
229 * Print error message immediately without searching for a matching
230 * catch clause; just finally clauses are executed before the script
231 * is terminated.
232 */
233 return FALSE;
234 }
235 else
236#endif
237 {
238 /*
239 * Prepare the throw of an error exception, so that everything will
240 * be aborted (except for executing finally clauses), until the error
241 * exception is caught; if still uncaught at the top level, the error
242 * message will be displayed and the script processing terminated
243 * then. - This function has no access to the conditional stack.
244 * Thus, the actual throw is made after the failing command has
245 * returned. - Throw only the first of several errors in a row, except
246 * a severe error is following.
247 */
248 if (msg_list != NULL)
249 {
250 plist = msg_list;
251 while (*plist != NULL)
252 plist = &(*plist)->next;
253
Bram Moolenaar25e0f582020-05-25 22:36:50 +0200254 elem = ALLOC_CLEAR_ONE(msglist_T);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000255 if (elem == NULL)
256 {
257 suppress_errthrow = TRUE;
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100258 emsg(_(e_outofmem));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000259 }
260 else
261 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100262 elem->msg = (char *)vim_strsave(mesg);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000263 if (elem->msg == NULL)
264 {
265 vim_free(elem);
266 suppress_errthrow = TRUE;
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100267 emsg(_(e_outofmem));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000268 }
269 else
270 {
271 elem->next = NULL;
272 elem->throw_msg = NULL;
273 *plist = elem;
274 if (plist == msg_list || severe)
275 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100276 char *tmsg;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000277
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100278 // Skip the extra "Vim " prefix for message "E458".
Bram Moolenaar071d4272004-06-13 20:20:40 +0000279 tmsg = elem->msg;
280 if (STRNCMP(tmsg, "Vim E", 5) == 0
281 && VIM_ISDIGIT(tmsg[5])
282 && VIM_ISDIGIT(tmsg[6])
283 && VIM_ISDIGIT(tmsg[7])
284 && tmsg[8] == ':'
285 && tmsg[9] == ' ')
286 (*msg_list)->throw_msg = &tmsg[4];
287 else
288 (*msg_list)->throw_msg = tmsg;
289 }
Bram Moolenaar25e0f582020-05-25 22:36:50 +0200290
291 // Get the source name and lnum now, it may change before
292 // reaching do_errthrow().
293 elem->sfile = estack_sfile();
294 elem->slnum = SOURCING_LNUM;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000295 }
296 }
297 }
298 return TRUE;
299 }
300}
301
302/*
303 * Free a "msg_list" and the messages it contains.
304 */
305 static void
Bram Moolenaar25e0f582020-05-25 22:36:50 +0200306free_msglist(msglist_T *l)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000307{
Bram Moolenaar25e0f582020-05-25 22:36:50 +0200308 msglist_T *messages, *next;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000309
310 messages = l;
311 while (messages != NULL)
312 {
313 next = messages->next;
314 vim_free(messages->msg);
Bram Moolenaar25e0f582020-05-25 22:36:50 +0200315 vim_free(messages->sfile);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000316 vim_free(messages);
317 messages = next;
318 }
319}
320
321/*
Bram Moolenaar9fee7d42013-11-28 17:04:43 +0100322 * Free global "*msg_list" and the messages it contains, then set "*msg_list"
323 * to NULL.
324 */
325 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +0100326free_global_msglist(void)
Bram Moolenaar9fee7d42013-11-28 17:04:43 +0100327{
328 free_msglist(*msg_list);
329 *msg_list = NULL;
330}
331
332/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000333 * Throw the message specified in the call to cause_errthrow() above as an
334 * error exception. If cstack is NULL, postpone the throw until do_cmdline()
335 * has returned (see do_one_cmd()).
336 */
337 void
Bram Moolenaarddef1292019-12-16 17:10:33 +0100338do_errthrow(cstack_T *cstack, char_u *cmdname)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000339{
340 /*
341 * Ensure that all commands in nested function calls and sourced files
342 * are aborted immediately.
343 */
344 if (cause_abort)
345 {
346 cause_abort = FALSE;
347 force_abort = TRUE;
348 }
349
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100350 // If no exception is to be thrown or the conversion should be done after
351 // returning to a previous invocation of do_one_cmd(), do nothing.
Bram Moolenaar4632d292006-11-28 17:36:37 +0000352 if (msg_list == NULL || *msg_list == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000353 return;
354
355 if (throw_exception(*msg_list, ET_ERROR, cmdname) == FAIL)
356 free_msglist(*msg_list);
357 else
358 {
359 if (cstack != NULL)
360 do_throw(cstack);
361 else
362 need_rethrow = TRUE;
363 }
364 *msg_list = NULL;
365}
366
367/*
368 * do_intthrow(): Replace the current exception by an interrupt or interrupt
369 * exception if appropriate. Return TRUE if the current exception is discarded,
370 * FALSE otherwise.
371 */
372 int
Bram Moolenaarddef1292019-12-16 17:10:33 +0100373do_intthrow(cstack_T *cstack)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000374{
375 /*
376 * If no interrupt occurred or no try conditional is active and no exception
377 * is being thrown, do nothing (for compatibility of non-EH scripts).
378 */
379 if (!got_int || (trylevel == 0 && !did_throw))
380 return FALSE;
381
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100382#ifdef THROW_TEST // avoid warning for condition always true
Bram Moolenaar071d4272004-06-13 20:20:40 +0000383 if (!THROW_ON_INTERRUPT)
384 {
385 /*
386 * The interrupt aborts everything except for executing finally clauses.
387 * Discard any user or error or interrupt exception currently being
388 * thrown.
389 */
390 if (did_throw)
391 discard_current_exception();
392 }
393 else
394#endif
395 {
396 /*
397 * Throw an interrupt exception, so that everything will be aborted
398 * (except for executing finally clauses), until the interrupt exception
399 * is caught; if still uncaught at the top level, the script processing
400 * will be terminated then. - If an interrupt exception is already
401 * being thrown, do nothing.
402 *
403 */
404 if (did_throw)
405 {
406 if (current_exception->type == ET_INTERRUPT)
407 return FALSE;
408
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100409 // An interrupt exception replaces any user or error exception.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000410 discard_current_exception();
411 }
412 if (throw_exception("Vim:Interrupt", ET_INTERRUPT, NULL) != FAIL)
413 do_throw(cstack);
414 }
415
416 return TRUE;
417}
418
Bram Moolenaar071d4272004-06-13 20:20:40 +0000419/*
Bram Moolenaar9fee7d42013-11-28 17:04:43 +0100420 * Get an exception message that is to be stored in current_exception->value.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000421 */
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100422 char *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +0100423get_exception_string(
424 void *value,
Bram Moolenaar8a5883b2016-11-10 20:20:05 +0100425 except_type_T type,
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +0100426 char_u *cmdname,
427 int *should_free)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000428{
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100429 char *ret;
430 char *mesg;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000431 int cmdlen;
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100432 char *p, *val;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000433
434 if (type == ET_ERROR)
435 {
Bram Moolenaar9ef00be2016-03-06 14:58:28 +0100436 *should_free = TRUE;
Bram Moolenaar25e0f582020-05-25 22:36:50 +0200437 mesg = ((msglist_T *)value)->throw_msg;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000438 if (cmdname != NULL && *cmdname != NUL)
439 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +0000440 cmdlen = (int)STRLEN(cmdname);
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100441 ret = (char *)vim_strnsave((char_u *)"Vim(",
Bram Moolenaar71ccd032020-06-12 22:59:11 +0200442 4 + cmdlen + 2 + STRLEN(mesg));
Bram Moolenaar9fee7d42013-11-28 17:04:43 +0100443 if (ret == NULL)
444 return ret;
445 STRCPY(&ret[4], cmdname);
446 STRCPY(&ret[4 + cmdlen], "):");
447 val = ret + 4 + cmdlen + 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000448 }
449 else
450 {
Bram Moolenaar71ccd032020-06-12 22:59:11 +0200451 ret = (char *)vim_strnsave((char_u *)"Vim:", 4 + STRLEN(mesg));
Bram Moolenaar9fee7d42013-11-28 17:04:43 +0100452 if (ret == NULL)
453 return ret;
454 val = ret + 4;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000455 }
456
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100457 // msg_add_fname may have been used to prefix the message with a file
458 // name in quotes. In the exception value, put the file name in
459 // parentheses and move it to the end.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000460 for (p = mesg; ; p++)
461 {
462 if (*p == NUL
463 || (*p == 'E'
464 && VIM_ISDIGIT(p[1])
465 && (p[2] == ':'
466 || (VIM_ISDIGIT(p[2])
467 && (p[3] == ':'
468 || (VIM_ISDIGIT(p[3])
469 && p[4] == ':'))))))
470 {
Bram Moolenaar051b7822005-05-19 21:00:46 +0000471 if (*p == NUL || p == mesg)
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100472 STRCAT(val, mesg); // 'E123' missing or at beginning
Bram Moolenaar071d4272004-06-13 20:20:40 +0000473 else
474 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100475 // '"filename" E123: message text'
Bram Moolenaar071d4272004-06-13 20:20:40 +0000476 if (mesg[0] != '"' || p-2 < &mesg[1] ||
477 p[-2] != '"' || p[-1] != ' ')
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100478 // "E123:" is part of the file name.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000479 continue;
480
481 STRCAT(val, p);
482 p[-2] = NUL;
483 sprintf((char *)(val + STRLEN(p)), " (%s)", &mesg[1]);
484 p[-2] = '"';
485 }
486 break;
487 }
488 }
489 }
490 else
Bram Moolenaar9fee7d42013-11-28 17:04:43 +0100491 {
492 *should_free = FALSE;
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100493 ret = value;
Bram Moolenaar9fee7d42013-11-28 17:04:43 +0100494 }
495
496 return ret;
497}
498
499
500/*
501 * Throw a new exception. Return FAIL when out of memory or it was tried to
502 * throw an illegal user exception. "value" is the exception string for a
503 * user or interrupt exception, or points to a message list in case of an
504 * error exception.
505 */
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100506 int
Bram Moolenaar8a5883b2016-11-10 20:20:05 +0100507throw_exception(void *value, except_type_T type, char_u *cmdname)
Bram Moolenaar9fee7d42013-11-28 17:04:43 +0100508{
509 except_T *excp;
510 int should_free;
511
512 /*
513 * Disallow faking Interrupt or error exceptions as user exceptions. They
514 * would be treated differently from real interrupt or error exceptions
515 * when no active try block is found, see do_cmdline().
516 */
517 if (type == ET_USER)
518 {
519 if (STRNCMP((char_u *)value, "Vim", 3) == 0
520 && (((char_u *)value)[3] == NUL || ((char_u *)value)[3] == ':'
521 || ((char_u *)value)[3] == '('))
522 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100523 emsg(_("E608: Cannot :throw exceptions with 'Vim' prefix"));
Bram Moolenaar9fee7d42013-11-28 17:04:43 +0100524 goto fail;
525 }
526 }
527
Bram Moolenaarc799fe22019-05-28 23:08:19 +0200528 excp = ALLOC_ONE(except_T);
Bram Moolenaar9fee7d42013-11-28 17:04:43 +0100529 if (excp == NULL)
530 goto nomem;
531
532 if (type == ET_ERROR)
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100533 // Store the original message and prefix the exception value with
534 // "Vim:" or, if a command name is given, "Vim(cmdname):".
Bram Moolenaar25e0f582020-05-25 22:36:50 +0200535 excp->messages = (msglist_T *)value;
Bram Moolenaar9fee7d42013-11-28 17:04:43 +0100536
537 excp->value = get_exception_string(value, type, cmdname, &should_free);
538 if (excp->value == NULL && should_free)
539 goto nomem;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000540
541 excp->type = type;
Bram Moolenaar25e0f582020-05-25 22:36:50 +0200542 if (type == ET_ERROR && ((msglist_T *)value)->sfile != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000543 {
Bram Moolenaar25e0f582020-05-25 22:36:50 +0200544 msglist_T *entry = (msglist_T *)value;
545
546 excp->throw_name = entry->sfile;
547 entry->sfile = NULL;
548 excp->throw_lnum = entry->slnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000549 }
Bram Moolenaar25e0f582020-05-25 22:36:50 +0200550 else
551 {
552 excp->throw_name = estack_sfile();
553 if (excp->throw_name == NULL)
554 excp->throw_name = vim_strsave((char_u *)"");
555 if (excp->throw_name == NULL)
556 {
557 if (should_free)
558 vim_free(excp->value);
559 goto nomem;
560 }
561 excp->throw_lnum = SOURCING_LNUM;
562 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000563
564 if (p_verbose >= 13 || debug_break_level > 0)
565 {
566 int save_msg_silent = msg_silent;
567
568 if (debug_break_level > 0)
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100569 msg_silent = FALSE; // display messages
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +0000570 else
571 verbose_enter();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000572 ++no_wait_return;
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +0000573 if (debug_break_level > 0 || *p_vfile == NUL)
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100574 msg_scroll = TRUE; // always scroll up, don't overwrite
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +0000575
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100576 smsg(_("Exception thrown: %s"), excp->value);
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100577 msg_puts("\n"); // don't overwrite this either
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +0000578
579 if (debug_break_level > 0 || *p_vfile == NUL)
580 cmdline_row = msg_row;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000581 --no_wait_return;
582 if (debug_break_level > 0)
583 msg_silent = save_msg_silent;
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +0000584 else
585 verbose_leave();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000586 }
587
588 current_exception = excp;
589 return OK;
590
591nomem:
592 vim_free(excp);
593 suppress_errthrow = TRUE;
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100594 emsg(_(e_outofmem));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000595fail:
596 current_exception = NULL;
597 return FAIL;
598}
599
600/*
601 * Discard an exception. "was_finished" is set when the exception has been
602 * caught and the catch clause has been ended normally.
603 */
604 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +0100605discard_exception(except_T *excp, int was_finished)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000606{
607 char_u *saved_IObuff;
608
609 if (excp == NULL)
610 {
Bram Moolenaar95f09602016-11-10 20:01:45 +0100611 internal_error("discard_exception()");
Bram Moolenaar071d4272004-06-13 20:20:40 +0000612 return;
613 }
614
615 if (p_verbose >= 13 || debug_break_level > 0)
616 {
617 int save_msg_silent = msg_silent;
618
619 saved_IObuff = vim_strsave(IObuff);
620 if (debug_break_level > 0)
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100621 msg_silent = FALSE; // display messages
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +0000622 else
623 verbose_enter();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000624 ++no_wait_return;
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +0000625 if (debug_break_level > 0 || *p_vfile == NUL)
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100626 msg_scroll = TRUE; // always scroll up, don't overwrite
Bram Moolenaar051b7822005-05-19 21:00:46 +0000627 smsg(was_finished
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100628 ? _("Exception finished: %s")
629 : _("Exception discarded: %s"),
Bram Moolenaar071d4272004-06-13 20:20:40 +0000630 excp->value);
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100631 msg_puts("\n"); // don't overwrite this either
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +0000632 if (debug_break_level > 0 || *p_vfile == NUL)
633 cmdline_row = msg_row;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000634 --no_wait_return;
635 if (debug_break_level > 0)
636 msg_silent = save_msg_silent;
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +0000637 else
638 verbose_leave();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000639 STRCPY(IObuff, saved_IObuff);
640 vim_free(saved_IObuff);
641 }
642 if (excp->type != ET_INTERRUPT)
643 vim_free(excp->value);
644 if (excp->type == ET_ERROR)
645 free_msglist(excp->messages);
646 vim_free(excp->throw_name);
647 vim_free(excp);
648}
649
650/*
651 * Discard the exception currently being thrown.
652 */
653 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +0100654discard_current_exception(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000655{
Bram Moolenaarcae24be2017-07-10 22:12:10 +0200656 if (current_exception != NULL)
657 {
658 discard_exception(current_exception, FALSE);
659 current_exception = NULL;
660 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000661 did_throw = FALSE;
662 need_rethrow = FALSE;
663}
664
665/*
666 * Put an exception on the caught stack.
667 */
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100668 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +0100669catch_exception(except_T *excp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000670{
671 excp->caught = caught_stack;
672 caught_stack = excp;
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100673 set_vim_var_string(VV_EXCEPTION, (char_u *)excp->value, -1);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000674 if (*excp->throw_name != NUL)
675 {
676 if (excp->throw_lnum != 0)
Bram Moolenaar051b7822005-05-19 21:00:46 +0000677 vim_snprintf((char *)IObuff, IOSIZE, _("%s, line %ld"),
678 excp->throw_name, (long)excp->throw_lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000679 else
Bram Moolenaar051b7822005-05-19 21:00:46 +0000680 vim_snprintf((char *)IObuff, IOSIZE, "%s", excp->throw_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000681 set_vim_var_string(VV_THROWPOINT, IObuff, -1);
682 }
683 else
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100684 // throw_name not set on an exception from a command that was typed.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000685 set_vim_var_string(VV_THROWPOINT, NULL, -1);
686
687 if (p_verbose >= 13 || debug_break_level > 0)
688 {
689 int save_msg_silent = msg_silent;
690
691 if (debug_break_level > 0)
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100692 msg_silent = FALSE; // display messages
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +0000693 else
694 verbose_enter();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000695 ++no_wait_return;
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +0000696 if (debug_break_level > 0 || *p_vfile == NUL)
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100697 msg_scroll = TRUE; // always scroll up, don't overwrite
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +0000698
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100699 smsg(_("Exception caught: %s"), excp->value);
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100700 msg_puts("\n"); // don't overwrite this either
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +0000701
702 if (debug_break_level > 0 || *p_vfile == NUL)
703 cmdline_row = msg_row;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000704 --no_wait_return;
705 if (debug_break_level > 0)
706 msg_silent = save_msg_silent;
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +0000707 else
708 verbose_leave();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000709 }
710}
711
712/*
713 * Remove an exception from the caught stack.
714 */
715 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +0100716finish_exception(except_T *excp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000717{
718 if (excp != caught_stack)
Bram Moolenaar95f09602016-11-10 20:01:45 +0100719 internal_error("finish_exception()");
Bram Moolenaar071d4272004-06-13 20:20:40 +0000720 caught_stack = caught_stack->caught;
721 if (caught_stack != NULL)
722 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100723 set_vim_var_string(VV_EXCEPTION, (char_u *)caught_stack->value, -1);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000724 if (*caught_stack->throw_name != NUL)
725 {
726 if (caught_stack->throw_lnum != 0)
Bram Moolenaar051b7822005-05-19 21:00:46 +0000727 vim_snprintf((char *)IObuff, IOSIZE,
Bram Moolenaar071d4272004-06-13 20:20:40 +0000728 _("%s, line %ld"), caught_stack->throw_name,
729 (long)caught_stack->throw_lnum);
730 else
Bram Moolenaar051b7822005-05-19 21:00:46 +0000731 vim_snprintf((char *)IObuff, IOSIZE, "%s",
732 caught_stack->throw_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000733 set_vim_var_string(VV_THROWPOINT, IObuff, -1);
734 }
735 else
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100736 // throw_name not set on an exception from a command that was
737 // typed.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000738 set_vim_var_string(VV_THROWPOINT, NULL, -1);
739 }
740 else
741 {
742 set_vim_var_string(VV_EXCEPTION, NULL, -1);
743 set_vim_var_string(VV_THROWPOINT, NULL, -1);
744 }
745
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100746 // Discard the exception, but use the finish message for 'verbose'.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000747 discard_exception(excp, TRUE);
748}
749
750/*
751 * Flags specifying the message displayed by report_pending.
752 */
753#define RP_MAKE 0
754#define RP_RESUME 1
755#define RP_DISCARD 2
756
757/*
758 * Report information about something pending in a finally clause if required by
759 * the 'verbose' option or when debugging. "action" tells whether something is
760 * made pending or something pending is resumed or discarded. "pending" tells
761 * what is pending. "value" specifies the return value for a pending ":return"
762 * or the exception value for a pending exception.
763 */
764 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +0100765report_pending(int action, int pending, void *value)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000766{
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100767 char *mesg;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000768 char *s;
769 int save_msg_silent;
770
771
772 switch (action)
773 {
774 case RP_MAKE:
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100775 mesg = _("%s made pending");
Bram Moolenaar071d4272004-06-13 20:20:40 +0000776 break;
777 case RP_RESUME:
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100778 mesg = _("%s resumed");
Bram Moolenaar071d4272004-06-13 20:20:40 +0000779 break;
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100780 // case RP_DISCARD:
Bram Moolenaar071d4272004-06-13 20:20:40 +0000781 default:
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100782 mesg = _("%s discarded");
Bram Moolenaar071d4272004-06-13 20:20:40 +0000783 break;
784 }
785
786 switch (pending)
787 {
788 case CSTP_NONE:
789 return;
790
791 case CSTP_CONTINUE:
792 s = ":continue";
793 break;
794 case CSTP_BREAK:
795 s = ":break";
796 break;
797 case CSTP_FINISH:
798 s = ":finish";
799 break;
800 case CSTP_RETURN:
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100801 // ":return" command producing value, allocated
Bram Moolenaar071d4272004-06-13 20:20:40 +0000802 s = (char *)get_return_cmd(value);
803 break;
804
805 default:
806 if (pending & CSTP_THROW)
807 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100808 vim_snprintf((char *)IObuff, IOSIZE, mesg, _("Exception"));
Bram Moolenaar71ccd032020-06-12 22:59:11 +0200809 mesg = (char *)vim_strnsave(IObuff, STRLEN(IObuff) + 4);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000810 STRCAT(mesg, ": %s");
811 s = (char *)((except_T *)value)->value;
812 }
813 else if ((pending & CSTP_ERROR) && (pending & CSTP_INTERRUPT))
814 s = _("Error and interrupt");
815 else if (pending & CSTP_ERROR)
816 s = _("Error");
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100817 else // if (pending & CSTP_INTERRUPT)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000818 s = _("Interrupt");
819 }
820
821 save_msg_silent = msg_silent;
822 if (debug_break_level > 0)
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100823 msg_silent = FALSE; // display messages
Bram Moolenaar071d4272004-06-13 20:20:40 +0000824 ++no_wait_return;
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100825 msg_scroll = TRUE; // always scroll up, don't overwrite
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100826 smsg(mesg, s);
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100827 msg_puts("\n"); // don't overwrite this either
Bram Moolenaar071d4272004-06-13 20:20:40 +0000828 cmdline_row = msg_row;
829 --no_wait_return;
830 if (debug_break_level > 0)
831 msg_silent = save_msg_silent;
832
833 if (pending == CSTP_RETURN)
834 vim_free(s);
835 else if (pending & CSTP_THROW)
836 vim_free(mesg);
837}
838
839/*
840 * If something is made pending in a finally clause, report it if required by
841 * the 'verbose' option or when debugging.
842 */
843 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +0100844report_make_pending(int pending, void *value)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000845{
846 if (p_verbose >= 14 || debug_break_level > 0)
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +0000847 {
848 if (debug_break_level <= 0)
849 verbose_enter();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000850 report_pending(RP_MAKE, pending, value);
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +0000851 if (debug_break_level <= 0)
852 verbose_leave();
853 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000854}
855
856/*
857 * If something pending in a finally clause is resumed at the ":endtry", report
858 * it if required by the 'verbose' option or when debugging.
859 */
Bram Moolenaar5843f5f2019-08-20 20:13:45 +0200860 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +0100861report_resume_pending(int pending, void *value)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000862{
863 if (p_verbose >= 14 || debug_break_level > 0)
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +0000864 {
865 if (debug_break_level <= 0)
866 verbose_enter();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000867 report_pending(RP_RESUME, pending, value);
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +0000868 if (debug_break_level <= 0)
869 verbose_leave();
870 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000871}
872
873/*
874 * If something pending in a finally clause is discarded, report it if required
875 * by the 'verbose' option or when debugging.
876 */
Bram Moolenaar5843f5f2019-08-20 20:13:45 +0200877 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +0100878report_discard_pending(int pending, void *value)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000879{
880 if (p_verbose >= 14 || debug_break_level > 0)
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +0000881 {
882 if (debug_break_level <= 0)
883 verbose_enter();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000884 report_pending(RP_DISCARD, pending, value);
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +0000885 if (debug_break_level <= 0)
886 verbose_leave();
887 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000888}
889
890
891/*
Bram Moolenaar25e42232019-08-04 15:04:10 +0200892 * ":eval".
893 */
894 void
895ex_eval(exarg_T *eap)
896{
897 typval_T tv;
Bram Moolenaar5409f5d2020-06-24 18:37:35 +0200898 evalarg_T evalarg;
Bram Moolenaar25e42232019-08-04 15:04:10 +0200899
Bram Moolenaare40fbc22020-06-27 18:06:45 +0200900 CLEAR_FIELD(evalarg);
Bram Moolenaar5409f5d2020-06-24 18:37:35 +0200901 evalarg.eval_flags = eap->skip ? 0 : EVAL_EVALUATE;
902 evalarg.eval_cookie = eap->getline == getsourceline ? eap->cookie : NULL;
903
Bram Moolenaarb171fb12020-06-24 20:34:03 +0200904 if (eval0(eap->arg, &tv, eap, &evalarg) == OK)
Bram Moolenaar25e42232019-08-04 15:04:10 +0200905 clear_tv(&tv);
906}
907
908/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000909 * ":if".
910 */
911 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +0100912ex_if(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000913{
914 int error;
915 int skip;
916 int result;
Bram Moolenaarddef1292019-12-16 17:10:33 +0100917 cstack_T *cstack = eap->cstack;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000918
919 if (cstack->cs_idx == CSTACK_LEN - 1)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100920 eap->errmsg = N_("E579: :if nesting too deep");
Bram Moolenaar071d4272004-06-13 20:20:40 +0000921 else
922 {
923 ++cstack->cs_idx;
924 cstack->cs_flags[cstack->cs_idx] = 0;
925
926 /*
927 * Don't do something after an error, interrupt, or throw, or when there
928 * is a surrounding conditional and it was not active.
929 */
930 skip = did_emsg || got_int || did_throw || (cstack->cs_idx > 0
931 && !(cstack->cs_flags[cstack->cs_idx - 1] & CSF_ACTIVE));
932
Bram Moolenaarb171fb12020-06-24 20:34:03 +0200933 result = eval_to_bool(eap->arg, &error, eap, skip);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000934
935 if (!skip && !error)
936 {
937 if (result)
938 cstack->cs_flags[cstack->cs_idx] = CSF_ACTIVE | CSF_TRUE;
939 }
940 else
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100941 // set TRUE, so this conditional will never get active
Bram Moolenaar071d4272004-06-13 20:20:40 +0000942 cstack->cs_flags[cstack->cs_idx] = CSF_TRUE;
943 }
944}
945
946/*
947 * ":endif".
948 */
949 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +0100950ex_endif(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000951{
952 did_endif = TRUE;
953 if (eap->cstack->cs_idx < 0
Bram Moolenaarde8866b2005-01-06 23:24:37 +0000954 || (eap->cstack->cs_flags[eap->cstack->cs_idx]
955 & (CSF_WHILE | CSF_FOR | CSF_TRY)))
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100956 eap->errmsg = N_(e_endif_without_if);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000957 else
958 {
959 /*
960 * When debugging or a breakpoint was encountered, display the debug
961 * prompt (if not already done). This shows the user that an ":endif"
962 * is executed when the ":if" or a previous ":elseif" was not TRUE.
963 * Handle a ">quit" debug command as if an interrupt had occurred before
964 * the ":endif". That is, throw an interrupt exception if appropriate.
965 * Doing this here prevents an exception for a parsing error being
966 * discarded by throwing the interrupt exception later on.
967 */
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000968 if (!(eap->cstack->cs_flags[eap->cstack->cs_idx] & CSF_TRUE)
969 && dbg_check_skipped(eap))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000970 (void)do_intthrow(eap->cstack);
971
972 --eap->cstack->cs_idx;
973 }
974}
975
976/*
977 * ":else" and ":elseif".
978 */
979 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +0100980ex_else(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000981{
982 int error;
983 int skip;
984 int result;
Bram Moolenaarddef1292019-12-16 17:10:33 +0100985 cstack_T *cstack = eap->cstack;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000986
987 /*
988 * Don't do something after an error, interrupt, or throw, or when there is
989 * a surrounding conditional and it was not active.
990 */
991 skip = did_emsg || got_int || did_throw || (cstack->cs_idx > 0
992 && !(cstack->cs_flags[cstack->cs_idx - 1] & CSF_ACTIVE));
993
994 if (cstack->cs_idx < 0
Bram Moolenaar12805862005-01-05 22:16:17 +0000995 || (cstack->cs_flags[cstack->cs_idx]
996 & (CSF_WHILE | CSF_FOR | CSF_TRY)))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000997 {
998 if (eap->cmdidx == CMD_else)
999 {
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01001000 eap->errmsg = N_(e_else_without_if);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001001 return;
1002 }
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01001003 eap->errmsg = N_(e_elseif_without_if);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001004 skip = TRUE;
1005 }
1006 else if (cstack->cs_flags[cstack->cs_idx] & CSF_ELSE)
1007 {
1008 if (eap->cmdidx == CMD_else)
1009 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001010 eap->errmsg = N_("E583: multiple :else");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001011 return;
1012 }
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001013 eap->errmsg = N_("E584: :elseif after :else");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001014 skip = TRUE;
1015 }
1016
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001017 // if skipping or the ":if" was TRUE, reset ACTIVE, otherwise set it
Bram Moolenaar071d4272004-06-13 20:20:40 +00001018 if (skip || cstack->cs_flags[cstack->cs_idx] & CSF_TRUE)
1019 {
1020 if (eap->errmsg == NULL)
1021 cstack->cs_flags[cstack->cs_idx] = CSF_TRUE;
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001022 skip = TRUE; // don't evaluate an ":elseif"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001023 }
1024 else
1025 cstack->cs_flags[cstack->cs_idx] = CSF_ACTIVE;
1026
1027 /*
1028 * When debugging or a breakpoint was encountered, display the debug prompt
1029 * (if not already done). This shows the user that an ":else" or ":elseif"
1030 * is executed when the ":if" or previous ":elseif" was not TRUE. Handle
1031 * a ">quit" debug command as if an interrupt had occurred before the
1032 * ":else" or ":elseif". That is, set "skip" and throw an interrupt
1033 * exception if appropriate. Doing this here prevents that an exception
1034 * for a parsing errors is discarded when throwing the interrupt exception
1035 * later on.
1036 */
1037 if (!skip && dbg_check_skipped(eap) && got_int)
1038 {
1039 (void)do_intthrow(cstack);
1040 skip = TRUE;
1041 }
1042
1043 if (eap->cmdidx == CMD_elseif)
1044 {
Bram Moolenaarb171fb12020-06-24 20:34:03 +02001045 result = eval_to_bool(eap->arg, &error, eap, skip);
Bram Moolenaar2c5ed4e2020-04-20 19:42:10 +02001046
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001047 // When throwing error exceptions, we want to throw always the first
1048 // of several errors in a row. This is what actually happens when
1049 // a conditional error was detected above and there is another failure
1050 // when parsing the expression. Since the skip flag is set in this
1051 // case, the parsing error will be ignored by emsg().
Bram Moolenaar071d4272004-06-13 20:20:40 +00001052 if (!skip && !error)
1053 {
1054 if (result)
1055 cstack->cs_flags[cstack->cs_idx] = CSF_ACTIVE | CSF_TRUE;
1056 else
1057 cstack->cs_flags[cstack->cs_idx] = 0;
1058 }
1059 else if (eap->errmsg == NULL)
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001060 // set TRUE, so this conditional will never get active
Bram Moolenaar071d4272004-06-13 20:20:40 +00001061 cstack->cs_flags[cstack->cs_idx] = CSF_TRUE;
1062 }
1063 else
1064 cstack->cs_flags[cstack->cs_idx] |= CSF_ELSE;
1065}
1066
1067/*
Bram Moolenaar12805862005-01-05 22:16:17 +00001068 * Handle ":while" and ":for".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001069 */
1070 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001071ex_while(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001072{
1073 int error;
1074 int skip;
1075 int result;
Bram Moolenaarddef1292019-12-16 17:10:33 +01001076 cstack_T *cstack = eap->cstack;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001077
1078 if (cstack->cs_idx == CSTACK_LEN - 1)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001079 eap->errmsg = N_("E585: :while/:for nesting too deep");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001080 else
1081 {
1082 /*
Bram Moolenaar12805862005-01-05 22:16:17 +00001083 * The loop flag is set when we have jumped back from the matching
1084 * ":endwhile" or ":endfor". When not set, need to initialise this
1085 * cstack entry.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001086 */
Bram Moolenaar12805862005-01-05 22:16:17 +00001087 if ((cstack->cs_lflags & CSL_HAD_LOOP) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001088 {
1089 ++cstack->cs_idx;
Bram Moolenaar12805862005-01-05 22:16:17 +00001090 ++cstack->cs_looplevel;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001091 cstack->cs_line[cstack->cs_idx] = -1;
1092 }
Bram Moolenaar12805862005-01-05 22:16:17 +00001093 cstack->cs_flags[cstack->cs_idx] =
1094 eap->cmdidx == CMD_while ? CSF_WHILE : CSF_FOR;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001095
1096 /*
Bram Moolenaar12805862005-01-05 22:16:17 +00001097 * Don't do something after an error, interrupt, or throw, or when
1098 * there is a surrounding conditional and it was not active.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001099 */
1100 skip = did_emsg || got_int || did_throw || (cstack->cs_idx > 0
1101 && !(cstack->cs_flags[cstack->cs_idx - 1] & CSF_ACTIVE));
Bram Moolenaar12805862005-01-05 22:16:17 +00001102 if (eap->cmdidx == CMD_while)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001103 {
Bram Moolenaar12805862005-01-05 22:16:17 +00001104 /*
1105 * ":while bool-expr"
1106 */
Bram Moolenaarb171fb12020-06-24 20:34:03 +02001107 result = eval_to_bool(eap->arg, &error, eap, skip);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001108 }
1109 else
1110 {
Bram Moolenaar12805862005-01-05 22:16:17 +00001111 void *fi;
1112
1113 /*
1114 * ":for var in list-expr"
1115 */
1116 if ((cstack->cs_lflags & CSL_HAD_LOOP) != 0)
1117 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001118 // Jumping here from a ":continue" or ":endfor": use the
1119 // previously evaluated list.
Bram Moolenaarde8866b2005-01-06 23:24:37 +00001120 fi = cstack->cs_forinfo[cstack->cs_idx];
Bram Moolenaar12805862005-01-05 22:16:17 +00001121 error = FALSE;
1122 }
1123 else
1124 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001125 // Evaluate the argument and get the info in a structure.
Bram Moolenaarb171fb12020-06-24 20:34:03 +02001126 fi = eval_for_line(eap->arg, &error, eap, skip);
Bram Moolenaarde8866b2005-01-06 23:24:37 +00001127 cstack->cs_forinfo[cstack->cs_idx] = fi;
Bram Moolenaar12805862005-01-05 22:16:17 +00001128 }
1129
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001130 // use the element at the start of the list and advance
Bram Moolenaar12805862005-01-05 22:16:17 +00001131 if (!error && fi != NULL && !skip)
1132 result = next_for_item(fi, eap->arg);
1133 else
1134 result = FALSE;
1135
1136 if (!result)
1137 {
1138 free_for_info(fi);
Bram Moolenaarde8866b2005-01-06 23:24:37 +00001139 cstack->cs_forinfo[cstack->cs_idx] = NULL;
Bram Moolenaar12805862005-01-05 22:16:17 +00001140 }
1141 }
1142
1143 /*
1144 * If this cstack entry was just initialised and is active, set the
1145 * loop flag, so do_cmdline() will set the line number in cs_line[].
1146 * If executing the command a second time, clear the loop flag.
1147 */
1148 if (!skip && !error && result)
1149 {
1150 cstack->cs_flags[cstack->cs_idx] |= (CSF_ACTIVE | CSF_TRUE);
1151 cstack->cs_lflags ^= CSL_HAD_LOOP;
1152 }
1153 else
1154 {
1155 cstack->cs_lflags &= ~CSL_HAD_LOOP;
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001156 // If the ":while" evaluates to FALSE or ":for" is past the end of
1157 // the list, show the debug prompt at the ":endwhile"/":endfor" as
1158 // if there was a ":break" in a ":while"/":for" evaluating to
1159 // TRUE.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001160 if (!skip && !error)
1161 cstack->cs_flags[cstack->cs_idx] |= CSF_TRUE;
1162 }
1163 }
1164}
1165
1166/*
1167 * ":continue"
1168 */
1169 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001170ex_continue(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001171{
1172 int idx;
Bram Moolenaarddef1292019-12-16 17:10:33 +01001173 cstack_T *cstack = eap->cstack;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001174
Bram Moolenaar12805862005-01-05 22:16:17 +00001175 if (cstack->cs_looplevel <= 0 || cstack->cs_idx < 0)
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01001176 eap->errmsg = N_(e_continue);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001177 else
1178 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001179 // Try to find the matching ":while". This might stop at a try
1180 // conditional not in its finally clause (which is then to be executed
1181 // next). Therefor, inactivate all conditionals except the ":while"
1182 // itself (if reached).
Bram Moolenaar12805862005-01-05 22:16:17 +00001183 idx = cleanup_conditionals(cstack, CSF_WHILE | CSF_FOR, FALSE);
Bram Moolenaareb3593b2006-04-22 22:33:57 +00001184 if (idx >= 0 && (cstack->cs_flags[idx] & (CSF_WHILE | CSF_FOR)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001185 {
Bram Moolenaarde8866b2005-01-06 23:24:37 +00001186 rewind_conditionals(cstack, idx, CSF_TRY, &cstack->cs_trylevel);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001187
1188 /*
Bram Moolenaar12805862005-01-05 22:16:17 +00001189 * Set CSL_HAD_CONT, so do_cmdline() will jump back to the
Bram Moolenaar071d4272004-06-13 20:20:40 +00001190 * matching ":while".
1191 */
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001192 cstack->cs_lflags |= CSL_HAD_CONT; // let do_cmdline() handle it
Bram Moolenaar071d4272004-06-13 20:20:40 +00001193 }
1194 else
1195 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001196 // If a try conditional not in its finally clause is reached first,
1197 // make the ":continue" pending for execution at the ":endtry".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001198 cstack->cs_pending[idx] = CSTP_CONTINUE;
1199 report_make_pending(CSTP_CONTINUE, NULL);
1200 }
1201 }
1202}
1203
1204/*
1205 * ":break"
1206 */
1207 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001208ex_break(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001209{
1210 int idx;
Bram Moolenaarddef1292019-12-16 17:10:33 +01001211 cstack_T *cstack = eap->cstack;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001212
Bram Moolenaar12805862005-01-05 22:16:17 +00001213 if (cstack->cs_looplevel <= 0 || cstack->cs_idx < 0)
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01001214 eap->errmsg = N_(e_break);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001215 else
1216 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001217 // Inactivate conditionals until the matching ":while" or a try
1218 // conditional not in its finally clause (which is then to be
1219 // executed next) is found. In the latter case, make the ":break"
1220 // pending for execution at the ":endtry".
Bram Moolenaar12805862005-01-05 22:16:17 +00001221 idx = cleanup_conditionals(cstack, CSF_WHILE | CSF_FOR, TRUE);
Bram Moolenaareb3593b2006-04-22 22:33:57 +00001222 if (idx >= 0 && !(cstack->cs_flags[idx] & (CSF_WHILE | CSF_FOR)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001223 {
1224 cstack->cs_pending[idx] = CSTP_BREAK;
1225 report_make_pending(CSTP_BREAK, NULL);
1226 }
1227 }
1228}
1229
1230/*
Bram Moolenaar12805862005-01-05 22:16:17 +00001231 * ":endwhile" and ":endfor"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001232 */
1233 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001234ex_endwhile(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001235{
Bram Moolenaarddef1292019-12-16 17:10:33 +01001236 cstack_T *cstack = eap->cstack;
1237 int idx;
1238 char *err;
1239 int csf;
1240 int fl;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001241
Bram Moolenaar12805862005-01-05 22:16:17 +00001242 if (eap->cmdidx == CMD_endwhile)
1243 {
1244 err = e_while;
1245 csf = CSF_WHILE;
1246 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001247 else
1248 {
Bram Moolenaar12805862005-01-05 22:16:17 +00001249 err = e_for;
1250 csf = CSF_FOR;
1251 }
1252
1253 if (cstack->cs_looplevel <= 0 || cstack->cs_idx < 0)
1254 eap->errmsg = err;
1255 else
1256 {
1257 fl = cstack->cs_flags[cstack->cs_idx];
1258 if (!(fl & csf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001259 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001260 // If we are in a ":while" or ":for" but used the wrong endloop
1261 // command, do not rewind to the next enclosing ":for"/":while".
Bram Moolenaar12805862005-01-05 22:16:17 +00001262 if (fl & CSF_WHILE)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001263 eap->errmsg = _("E732: Using :endfor with :while");
Bram Moolenaar12805862005-01-05 22:16:17 +00001264 else if (fl & CSF_FOR)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001265 eap->errmsg = _("E733: Using :endwhile with :for");
Bram Moolenaar3a3a7232005-01-17 22:16:15 +00001266 }
1267 if (!(fl & (CSF_WHILE | CSF_FOR)))
1268 {
1269 if (!(fl & CSF_TRY))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001270 eap->errmsg = e_endif;
Bram Moolenaar12805862005-01-05 22:16:17 +00001271 else if (fl & CSF_FINALLY)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001272 eap->errmsg = e_endtry;
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001273 // Try to find the matching ":while" and report what's missing.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001274 for (idx = cstack->cs_idx; idx > 0; --idx)
1275 {
Bram Moolenaar12805862005-01-05 22:16:17 +00001276 fl = cstack->cs_flags[idx];
1277 if ((fl & CSF_TRY) && !(fl & CSF_FINALLY))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001278 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001279 // Give up at a try conditional not in its finally clause.
1280 // Ignore the ":endwhile"/":endfor".
Bram Moolenaar12805862005-01-05 22:16:17 +00001281 eap->errmsg = err;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001282 return;
1283 }
Bram Moolenaar12805862005-01-05 22:16:17 +00001284 if (fl & csf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001285 break;
1286 }
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001287 // Cleanup and rewind all contained (and unclosed) conditionals.
Bram Moolenaar12805862005-01-05 22:16:17 +00001288 (void)cleanup_conditionals(cstack, CSF_WHILE | CSF_FOR, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001289 rewind_conditionals(cstack, idx, CSF_TRY, &cstack->cs_trylevel);
1290 }
1291
1292 /*
1293 * When debugging or a breakpoint was encountered, display the debug
1294 * prompt (if not already done). This shows the user that an
Bram Moolenaar12805862005-01-05 22:16:17 +00001295 * ":endwhile"/":endfor" is executed when the ":while" was not TRUE or
1296 * after a ":break". Handle a ">quit" debug command as if an
1297 * interrupt had occurred before the ":endwhile"/":endfor". That is,
1298 * throw an interrupt exception if appropriate. Doing this here
1299 * prevents that an exception for a parsing error is discarded when
1300 * throwing the interrupt exception later on.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001301 */
1302 else if (cstack->cs_flags[cstack->cs_idx] & CSF_TRUE
1303 && !(cstack->cs_flags[cstack->cs_idx] & CSF_ACTIVE)
1304 && dbg_check_skipped(eap))
1305 (void)do_intthrow(cstack);
1306
1307 /*
Bram Moolenaar12805862005-01-05 22:16:17 +00001308 * Set loop flag, so do_cmdline() will jump back to the matching
1309 * ":while" or ":for".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001310 */
Bram Moolenaar12805862005-01-05 22:16:17 +00001311 cstack->cs_lflags |= CSL_HAD_ENDLOOP;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001312 }
1313}
1314
1315
1316/*
1317 * ":throw expr"
1318 */
1319 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001320ex_throw(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001321{
1322 char_u *arg = eap->arg;
1323 char_u *value;
1324
1325 if (*arg != NUL && *arg != '|' && *arg != '\n')
Bram Moolenaarb171fb12020-06-24 20:34:03 +02001326 value = eval_to_string_skip(arg, eap, eap->skip);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001327 else
1328 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001329 emsg(_(e_argreq));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001330 value = NULL;
1331 }
1332
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001333 // On error or when an exception is thrown during argument evaluation, do
1334 // not throw.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001335 if (!eap->skip && value != NULL)
1336 {
1337 if (throw_exception(value, ET_USER, NULL) == FAIL)
1338 vim_free(value);
1339 else
1340 do_throw(eap->cstack);
1341 }
1342}
1343
1344/*
Bram Moolenaar269ec652004-07-29 08:43:53 +00001345 * Throw the current exception through the specified cstack. Common routine
1346 * for ":throw" (user exception) and error and interrupt exceptions. Also
1347 * used for rethrowing an uncaught exception.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001348 */
1349 void
Bram Moolenaarddef1292019-12-16 17:10:33 +01001350do_throw(cstack_T *cstack)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001351{
1352 int idx;
1353 int inactivate_try = FALSE;
1354
1355 /*
1356 * Cleanup and inactivate up to the next surrounding try conditional that
1357 * is not in its finally clause. Normally, do not inactivate the try
1358 * conditional itself, so that its ACTIVE flag can be tested below. But
1359 * if a previous error or interrupt has not been converted to an exception,
1360 * inactivate the try conditional, too, as if the conversion had been done,
Bram Moolenaar269ec652004-07-29 08:43:53 +00001361 * and reset the did_emsg or got_int flag, so this won't happen again at
1362 * the next surrounding try conditional.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001363 */
Bram Moolenaaraf0167f2009-05-16 15:31:32 +00001364#ifndef THROW_ON_ERROR_TRUE
Bram Moolenaar071d4272004-06-13 20:20:40 +00001365 if (did_emsg && !THROW_ON_ERROR)
1366 {
1367 inactivate_try = TRUE;
1368 did_emsg = FALSE;
1369 }
Bram Moolenaaraf0167f2009-05-16 15:31:32 +00001370#endif
1371#ifndef THROW_ON_INTERRUPT_TRUE
Bram Moolenaar071d4272004-06-13 20:20:40 +00001372 if (got_int && !THROW_ON_INTERRUPT)
1373 {
1374 inactivate_try = TRUE;
1375 got_int = FALSE;
1376 }
Bram Moolenaaraf0167f2009-05-16 15:31:32 +00001377#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001378 idx = cleanup_conditionals(cstack, 0, inactivate_try);
1379 if (idx >= 0)
1380 {
1381 /*
1382 * If this try conditional is active and we are before its first
Bram Moolenaar269ec652004-07-29 08:43:53 +00001383 * ":catch", set THROWN so that the ":catch" commands will check
1384 * whether the exception matches. When the exception came from any of
1385 * the catch clauses, it will be made pending at the ":finally" (if
1386 * present) and rethrown at the ":endtry". This will also happen if
1387 * the try conditional is inactive. This is the case when we are
1388 * throwing an exception due to an error or interrupt on the way from
1389 * a preceding ":continue", ":break", ":return", ":finish", error or
1390 * interrupt (not converted to an exception) to the finally clause or
1391 * from a preceding throw of a user or error or interrupt exception to
1392 * the matching catch clause or the finally clause.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001393 */
1394 if (!(cstack->cs_flags[idx] & CSF_CAUGHT))
1395 {
1396 if (cstack->cs_flags[idx] & CSF_ACTIVE)
1397 cstack->cs_flags[idx] |= CSF_THROWN;
1398 else
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001399 // THROWN may have already been set for a catchable exception
1400 // that has been discarded. Ensure it is reset for the new
1401 // exception.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001402 cstack->cs_flags[idx] &= ~CSF_THROWN;
1403 }
1404 cstack->cs_flags[idx] &= ~CSF_ACTIVE;
1405 cstack->cs_exception[idx] = current_exception;
1406 }
1407#if 0
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001408 // TODO: Add optimization below. Not yet done because of interface
1409 // problems to eval.c and ex_cmds2.c. (Servatius)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001410 else
1411 {
1412 /*
1413 * There are no catch clauses to check or finally clauses to execute.
1414 * End the current script or function. The exception will be rethrown
1415 * in the caller.
1416 */
1417 if (getline_equal(eap->getline, eap->cookie, get_func_line))
1418 current_funccal->returned = TRUE;
1419 elseif (eap->get_func_line == getsourceline)
1420 ((struct source_cookie *)eap->cookie)->finished = TRUE;
1421 }
1422#endif
1423
1424 did_throw = TRUE;
1425}
1426
1427/*
1428 * ":try"
1429 */
1430 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001431ex_try(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001432{
1433 int skip;
Bram Moolenaarddef1292019-12-16 17:10:33 +01001434 cstack_T *cstack = eap->cstack;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001435
1436 if (cstack->cs_idx == CSTACK_LEN - 1)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001437 eap->errmsg = N_("E601: :try nesting too deep");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001438 else
1439 {
1440 ++cstack->cs_idx;
1441 ++cstack->cs_trylevel;
1442 cstack->cs_flags[cstack->cs_idx] = CSF_TRY;
1443 cstack->cs_pending[cstack->cs_idx] = CSTP_NONE;
1444
1445 /*
1446 * Don't do something after an error, interrupt, or throw, or when there
1447 * is a surrounding conditional and it was not active.
1448 */
1449 skip = did_emsg || got_int || did_throw || (cstack->cs_idx > 0
1450 && !(cstack->cs_flags[cstack->cs_idx - 1] & CSF_ACTIVE));
1451
1452 if (!skip)
1453 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001454 // Set ACTIVE and TRUE. TRUE means that the corresponding ":catch"
1455 // commands should check for a match if an exception is thrown and
1456 // that the finally clause needs to be executed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001457 cstack->cs_flags[cstack->cs_idx] |= CSF_ACTIVE | CSF_TRUE;
1458
1459 /*
1460 * ":silent!", even when used in a try conditional, disables
1461 * displaying of error messages and conversion of errors to
1462 * exceptions. When the silent commands again open a try
1463 * conditional, save "emsg_silent" and reset it so that errors are
1464 * again converted to exceptions. The value is restored when that
1465 * try conditional is left. If it is left normally, the commands
1466 * following the ":endtry" are again silent. If it is left by
1467 * a ":continue", ":break", ":return", or ":finish", the commands
1468 * executed next are again silent. If it is left due to an
1469 * aborting error, an interrupt, or an exception, restoring
1470 * "emsg_silent" does not matter since we are already in the
1471 * aborting state and/or the exception has already been thrown.
1472 * The effect is then just freeing the memory that was allocated
1473 * to save the value.
1474 */
1475 if (emsg_silent)
1476 {
1477 eslist_T *elem;
1478
Bram Moolenaarc799fe22019-05-28 23:08:19 +02001479 elem = ALLOC_ONE(struct eslist_elem);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001480 if (elem == NULL)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001481 emsg(_(e_outofmem));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001482 else
1483 {
1484 elem->saved_emsg_silent = emsg_silent;
1485 elem->next = cstack->cs_emsg_silent_list;
1486 cstack->cs_emsg_silent_list = elem;
1487 cstack->cs_flags[cstack->cs_idx] |= CSF_SILENT;
1488 emsg_silent = 0;
1489 }
1490 }
1491 }
1492
1493 }
1494}
1495
1496/*
1497 * ":catch /{pattern}/" and ":catch"
1498 */
1499 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001500ex_catch(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001501{
1502 int idx = 0;
1503 int give_up = FALSE;
1504 int skip = FALSE;
1505 int caught = FALSE;
1506 char_u *end;
1507 int save_char = 0;
1508 char_u *save_cpo;
1509 regmatch_T regmatch;
1510 int prev_got_int;
Bram Moolenaarddef1292019-12-16 17:10:33 +01001511 cstack_T *cstack = eap->cstack;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001512 char_u *pat;
1513
1514 if (cstack->cs_trylevel <= 0 || cstack->cs_idx < 0)
1515 {
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01001516 eap->errmsg = e_catch;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001517 give_up = TRUE;
1518 }
1519 else
1520 {
1521 if (!(cstack->cs_flags[cstack->cs_idx] & CSF_TRY))
1522 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001523 // Report what's missing if the matching ":try" is not in its
1524 // finally clause.
Bram Moolenaar12805862005-01-05 22:16:17 +00001525 eap->errmsg = get_end_emsg(cstack);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001526 skip = TRUE;
1527 }
1528 for (idx = cstack->cs_idx; idx > 0; --idx)
1529 if (cstack->cs_flags[idx] & CSF_TRY)
1530 break;
1531 if (cstack->cs_flags[idx] & CSF_FINALLY)
1532 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001533 // Give up for a ":catch" after ":finally" and ignore it.
1534 // Just parse.
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001535 eap->errmsg = N_("E604: :catch after :finally");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001536 give_up = TRUE;
1537 }
Bram Moolenaarde8866b2005-01-06 23:24:37 +00001538 else
Bram Moolenaar12805862005-01-05 22:16:17 +00001539 rewind_conditionals(cstack, idx, CSF_WHILE | CSF_FOR,
1540 &cstack->cs_looplevel);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001541 }
1542
Bram Moolenaar2c5ed4e2020-04-20 19:42:10 +02001543 if (ends_excmd2(eap->cmd, eap->arg)) // no argument, catch all errors
Bram Moolenaar071d4272004-06-13 20:20:40 +00001544 {
1545 pat = (char_u *)".*";
1546 end = NULL;
1547 eap->nextcmd = find_nextcmd(eap->arg);
1548 }
1549 else
1550 {
1551 pat = eap->arg + 1;
Bram Moolenaar2c5ed4e2020-04-20 19:42:10 +02001552 end = skip_regexp_err(pat, *eap->arg, TRUE);
1553 if (end == NULL)
1554 give_up = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001555 }
1556
1557 if (!give_up)
1558 {
1559 /*
1560 * Don't do something when no exception has been thrown or when the
1561 * corresponding try block never got active (because of an inactive
1562 * surrounding conditional or after an error or interrupt or throw).
1563 */
1564 if (!did_throw || !(cstack->cs_flags[idx] & CSF_TRUE))
1565 skip = TRUE;
1566
1567 /*
1568 * Check for a match only if an exception is thrown but not caught by
1569 * a previous ":catch". An exception that has replaced a discarded
1570 * exception is not checked (THROWN is not set then).
1571 */
1572 if (!skip && (cstack->cs_flags[idx] & CSF_THROWN)
1573 && !(cstack->cs_flags[idx] & CSF_CAUGHT))
1574 {
Bram Moolenaar2c5ed4e2020-04-20 19:42:10 +02001575 if (end != NULL && *end != NUL
1576 && !ends_excmd2(end, skipwhite(end + 1)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001577 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001578 emsg(_(e_trailing));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001579 return;
1580 }
1581
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001582 // When debugging or a breakpoint was encountered, display the
1583 // debug prompt (if not already done) before checking for a match.
1584 // This is a helpful hint for the user when the regular expression
1585 // matching fails. Handle a ">quit" debug command as if an
1586 // interrupt had occurred before the ":catch". That is, discard
1587 // the original exception, replace it by an interrupt exception,
1588 // and don't catch it in this try block.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001589 if (!dbg_check_skipped(eap) || !do_intthrow(cstack))
1590 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001591 // Terminate the pattern and avoid the 'l' flag in 'cpoptions'
1592 // while compiling it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001593 if (end != NULL)
1594 {
1595 save_char = *end;
1596 *end = NUL;
1597 }
1598 save_cpo = p_cpo;
1599 p_cpo = (char_u *)"";
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001600 // Disable error messages, it will make current_exception
1601 // invalid.
Bram Moolenaar768ce242016-02-07 19:46:12 +01001602 ++emsg_off;
Bram Moolenaar150cc272007-08-01 13:47:46 +00001603 regmatch.regprog = vim_regcomp(pat, RE_MAGIC + RE_STRING);
Bram Moolenaar768ce242016-02-07 19:46:12 +01001604 --emsg_off;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001605 regmatch.rm_ic = FALSE;
1606 if (end != NULL)
1607 *end = save_char;
1608 p_cpo = save_cpo;
1609 if (regmatch.regprog == NULL)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001610 semsg(_(e_invarg2), pat);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001611 else
1612 {
1613 /*
1614 * Save the value of got_int and reset it. We don't want
1615 * a previous interruption cancel matching, only hitting
1616 * CTRL-C while matching should abort it.
1617 */
1618 prev_got_int = got_int;
1619 got_int = FALSE;
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001620 caught = vim_regexec_nl(&regmatch,
1621 (char_u *)current_exception->value, (colnr_T)0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001622 got_int |= prev_got_int;
Bram Moolenaar473de612013-06-08 18:19:48 +02001623 vim_regfree(regmatch.regprog);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001624 }
1625 }
1626 }
1627
1628 if (caught)
1629 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001630 // Make this ":catch" clause active and reset did_emsg, got_int,
1631 // and did_throw. Put the exception on the caught stack.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001632 cstack->cs_flags[idx] |= CSF_ACTIVE | CSF_CAUGHT;
1633 did_emsg = got_int = did_throw = FALSE;
1634 catch_exception((except_T *)cstack->cs_exception[idx]);
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001635 // It's mandatory that the current exception is stored in the cstack
1636 // so that it can be discarded at the next ":catch", ":finally", or
1637 // ":endtry" or when the catch clause is left by a ":continue",
1638 // ":break", ":return", ":finish", error, interrupt, or another
1639 // exception.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001640 if (cstack->cs_exception[cstack->cs_idx] != current_exception)
Bram Moolenaar95f09602016-11-10 20:01:45 +01001641 internal_error("ex_catch()");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001642 }
1643 else
1644 {
1645 /*
1646 * If there is a preceding catch clause and it caught the exception,
1647 * finish the exception now. This happens also after errors except
1648 * when this ":catch" was after the ":finally" or not within
1649 * a ":try". Make the try conditional inactive so that the
1650 * following catch clauses are skipped. On an error or interrupt
1651 * after the preceding try block or catch clause was left by
1652 * a ":continue", ":break", ":return", or ":finish", discard the
1653 * pending action.
1654 */
1655 cleanup_conditionals(cstack, CSF_TRY, TRUE);
1656 }
1657 }
1658
1659 if (end != NULL)
1660 eap->nextcmd = find_nextcmd(end);
1661}
1662
1663/*
1664 * ":finally"
1665 */
1666 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001667ex_finally(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001668{
1669 int idx;
1670 int skip = FALSE;
1671 int pending = CSTP_NONE;
Bram Moolenaarddef1292019-12-16 17:10:33 +01001672 cstack_T *cstack = eap->cstack;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001673
1674 if (cstack->cs_trylevel <= 0 || cstack->cs_idx < 0)
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01001675 eap->errmsg = e_finally;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001676 else
1677 {
1678 if (!(cstack->cs_flags[cstack->cs_idx] & CSF_TRY))
1679 {
Bram Moolenaar12805862005-01-05 22:16:17 +00001680 eap->errmsg = get_end_emsg(cstack);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001681 for (idx = cstack->cs_idx - 1; idx > 0; --idx)
1682 if (cstack->cs_flags[idx] & CSF_TRY)
1683 break;
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001684 // Make this error pending, so that the commands in the following
1685 // finally clause can be executed. This overrules also a pending
1686 // ":continue", ":break", ":return", or ":finish".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001687 pending = CSTP_ERROR;
1688 }
1689 else
1690 idx = cstack->cs_idx;
1691
1692 if (cstack->cs_flags[idx] & CSF_FINALLY)
1693 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001694 // Give up for a multiple ":finally" and ignore it.
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01001695 eap->errmsg = e_finally_dup;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001696 return;
1697 }
Bram Moolenaarde8866b2005-01-06 23:24:37 +00001698 rewind_conditionals(cstack, idx, CSF_WHILE | CSF_FOR,
Bram Moolenaar12805862005-01-05 22:16:17 +00001699 &cstack->cs_looplevel);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001700
1701 /*
1702 * Don't do something when the corresponding try block never got active
1703 * (because of an inactive surrounding conditional or after an error or
1704 * interrupt or throw) or for a ":finally" without ":try" or a multiple
1705 * ":finally". After every other error (did_emsg or the conditional
1706 * errors detected above) or after an interrupt (got_int) or an
1707 * exception (did_throw), the finally clause must be executed.
1708 */
1709 skip = !(cstack->cs_flags[cstack->cs_idx] & CSF_TRUE);
1710
1711 if (!skip)
1712 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001713 // When debugging or a breakpoint was encountered, display the
1714 // debug prompt (if not already done). The user then knows that the
1715 // finally clause is executed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001716 if (dbg_check_skipped(eap))
1717 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001718 // Handle a ">quit" debug command as if an interrupt had
1719 // occurred before the ":finally". That is, discard the
1720 // original exception and replace it by an interrupt
1721 // exception.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001722 (void)do_intthrow(cstack);
1723 }
1724
1725 /*
1726 * If there is a preceding catch clause and it caught the exception,
1727 * finish the exception now. This happens also after errors except
1728 * when this is a multiple ":finally" or one not within a ":try".
1729 * After an error or interrupt, this also discards a pending
1730 * ":continue", ":break", ":finish", or ":return" from the preceding
1731 * try block or catch clause.
1732 */
1733 cleanup_conditionals(cstack, CSF_TRY, FALSE);
1734
1735 /*
1736 * Make did_emsg, got_int, did_throw pending. If set, they overrule
1737 * a pending ":continue", ":break", ":return", or ":finish". Then
1738 * we have particularly to discard a pending return value (as done
1739 * by the call to cleanup_conditionals() above when did_emsg or
1740 * got_int is set). The pending values are restored by the
1741 * ":endtry", except if there is a new error, interrupt, exception,
1742 * ":continue", ":break", ":return", or ":finish" in the following
Bram Moolenaar12805862005-01-05 22:16:17 +00001743 * finally clause. A missing ":endwhile", ":endfor" or ":endif"
1744 * detected here is treated as if did_emsg and did_throw had
1745 * already been set, respectively in case that the error is not
1746 * converted to an exception, did_throw had already been unset.
1747 * We must not set did_emsg here since that would suppress the
1748 * error message.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001749 */
1750 if (pending == CSTP_ERROR || did_emsg || got_int || did_throw)
1751 {
1752 if (cstack->cs_pending[cstack->cs_idx] == CSTP_RETURN)
1753 {
1754 report_discard_pending(CSTP_RETURN,
Bram Moolenaarfca34d62005-01-04 21:38:36 +00001755 cstack->cs_rettv[cstack->cs_idx]);
1756 discard_pending_return(cstack->cs_rettv[cstack->cs_idx]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001757 }
1758 if (pending == CSTP_ERROR && !did_emsg)
1759 pending |= (THROW_ON_ERROR) ? CSTP_THROW : 0;
1760 else
1761 pending |= did_throw ? CSTP_THROW : 0;
1762 pending |= did_emsg ? CSTP_ERROR : 0;
1763 pending |= got_int ? CSTP_INTERRUPT : 0;
1764 cstack->cs_pending[cstack->cs_idx] = pending;
1765
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001766 // It's mandatory that the current exception is stored in the
1767 // cstack so that it can be rethrown at the ":endtry" or be
1768 // discarded if the finally clause is left by a ":continue",
1769 // ":break", ":return", ":finish", error, interrupt, or another
1770 // exception. When emsg() is called for a missing ":endif" or
1771 // a missing ":endwhile"/":endfor" detected here, the
1772 // exception will be discarded.
Bram Moolenaarde8866b2005-01-06 23:24:37 +00001773 if (did_throw && cstack->cs_exception[cstack->cs_idx]
1774 != current_exception)
Bram Moolenaar95f09602016-11-10 20:01:45 +01001775 internal_error("ex_finally()");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001776 }
1777
1778 /*
Bram Moolenaar12805862005-01-05 22:16:17 +00001779 * Set CSL_HAD_FINA, so do_cmdline() will reset did_emsg,
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001780 * got_int, and did_throw and make the finally clause active.
1781 * This will happen after emsg() has been called for a missing
Bram Moolenaar12805862005-01-05 22:16:17 +00001782 * ":endif" or a missing ":endwhile"/":endfor" detected here, so
1783 * that the following finally clause will be executed even then.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001784 */
Bram Moolenaar12805862005-01-05 22:16:17 +00001785 cstack->cs_lflags |= CSL_HAD_FINA;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001786 }
1787 }
1788}
1789
1790/*
1791 * ":endtry"
1792 */
1793 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001794ex_endtry(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001795{
1796 int idx;
1797 int skip;
1798 int rethrow = FALSE;
1799 int pending = CSTP_NONE;
Bram Moolenaarfca34d62005-01-04 21:38:36 +00001800 void *rettv = NULL;
Bram Moolenaarddef1292019-12-16 17:10:33 +01001801 cstack_T *cstack = eap->cstack;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001802
1803 if (cstack->cs_trylevel <= 0 || cstack->cs_idx < 0)
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01001804 eap->errmsg = e_no_endtry;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001805 else
1806 {
1807 /*
1808 * Don't do something after an error, interrupt or throw in the try
1809 * block, catch clause, or finally clause preceding this ":endtry" or
1810 * when an error or interrupt occurred after a ":continue", ":break",
1811 * ":return", or ":finish" in a try block or catch clause preceding this
1812 * ":endtry" or when the try block never got active (because of an
1813 * inactive surrounding conditional or after an error or interrupt or
1814 * throw) or when there is a surrounding conditional and it has been
1815 * made inactive by a ":continue", ":break", ":return", or ":finish" in
1816 * the finally clause. The latter case need not be tested since then
1817 * anything pending has already been discarded. */
1818 skip = did_emsg || got_int || did_throw ||
1819 !(cstack->cs_flags[cstack->cs_idx] & CSF_TRUE);
1820
1821 if (!(cstack->cs_flags[cstack->cs_idx] & CSF_TRY))
1822 {
Bram Moolenaar12805862005-01-05 22:16:17 +00001823 eap->errmsg = get_end_emsg(cstack);
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001824 // Find the matching ":try" and report what's missing.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001825 idx = cstack->cs_idx;
1826 do
1827 --idx;
1828 while (idx > 0 && !(cstack->cs_flags[idx] & CSF_TRY));
Bram Moolenaar12805862005-01-05 22:16:17 +00001829 rewind_conditionals(cstack, idx, CSF_WHILE | CSF_FOR,
1830 &cstack->cs_looplevel);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001831 skip = TRUE;
1832
1833 /*
1834 * If an exception is being thrown, discard it to prevent it from
1835 * being rethrown at the end of this function. It would be
1836 * discarded by the error message, anyway. Resets did_throw.
1837 * This does not affect the script termination due to the error
1838 * since "trylevel" is decremented after emsg() has been called.
1839 */
1840 if (did_throw)
1841 discard_current_exception();
1842 }
1843 else
1844 {
1845 idx = cstack->cs_idx;
1846
1847 /*
1848 * If we stopped with the exception currently being thrown at this
1849 * try conditional since we didn't know that it doesn't have
1850 * a finally clause, we need to rethrow it after closing the try
1851 * conditional.
1852 */
1853 if (did_throw && (cstack->cs_flags[idx] & CSF_TRUE)
1854 && !(cstack->cs_flags[idx] & CSF_FINALLY))
1855 rethrow = TRUE;
1856 }
1857
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001858 // If there was no finally clause, show the user when debugging or
1859 // a breakpoint was encountered that the end of the try conditional has
1860 // been reached: display the debug prompt (if not already done). Do
1861 // this on normal control flow or when an exception was thrown, but not
1862 // on an interrupt or error not converted to an exception or when
1863 // a ":break", ":continue", ":return", or ":finish" is pending. These
1864 // actions are carried out immediately.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001865 if ((rethrow || (!skip
1866 && !(cstack->cs_flags[idx] & CSF_FINALLY)
1867 && !cstack->cs_pending[idx]))
1868 && dbg_check_skipped(eap))
1869 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001870 // Handle a ">quit" debug command as if an interrupt had occurred
1871 // before the ":endtry". That is, throw an interrupt exception and
1872 // set "skip" and "rethrow".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001873 if (got_int)
1874 {
1875 skip = TRUE;
1876 (void)do_intthrow(cstack);
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001877 // The do_intthrow() call may have reset did_throw or
1878 // cstack->cs_pending[idx].
Bram Moolenaar071d4272004-06-13 20:20:40 +00001879 rethrow = FALSE;
1880 if (did_throw && !(cstack->cs_flags[idx] & CSF_FINALLY))
1881 rethrow = TRUE;
1882 }
1883 }
1884
1885 /*
1886 * If a ":return" is pending, we need to resume it after closing the
1887 * try conditional; remember the return value. If there was a finally
1888 * clause making an exception pending, we need to rethrow it. Make it
1889 * the exception currently being thrown.
1890 */
1891 if (!skip)
1892 {
1893 pending = cstack->cs_pending[idx];
1894 cstack->cs_pending[idx] = CSTP_NONE;
1895 if (pending == CSTP_RETURN)
Bram Moolenaarfca34d62005-01-04 21:38:36 +00001896 rettv = cstack->cs_rettv[idx];
Bram Moolenaar071d4272004-06-13 20:20:40 +00001897 else if (pending & CSTP_THROW)
1898 current_exception = cstack->cs_exception[idx];
1899 }
1900
1901 /*
1902 * Discard anything pending on an error, interrupt, or throw in the
1903 * finally clause. If there was no ":finally", discard a pending
1904 * ":continue", ":break", ":return", or ":finish" if an error or
1905 * interrupt occurred afterwards, but before the ":endtry" was reached.
1906 * If an exception was caught by the last of the catch clauses and there
1907 * was no finally clause, finish the exception now. This happens also
1908 * after errors except when this ":endtry" is not within a ":try".
1909 * Restore "emsg_silent" if it has been reset by this try conditional.
1910 */
Bram Moolenaareb3593b2006-04-22 22:33:57 +00001911 (void)cleanup_conditionals(cstack, CSF_TRY | CSF_SILENT, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001912
1913 --cstack->cs_idx;
1914 --cstack->cs_trylevel;
1915
1916 if (!skip)
1917 {
1918 report_resume_pending(pending,
Bram Moolenaarfca34d62005-01-04 21:38:36 +00001919 (pending == CSTP_RETURN) ? rettv :
Bram Moolenaar071d4272004-06-13 20:20:40 +00001920 (pending & CSTP_THROW) ? (void *)current_exception : NULL);
1921 switch (pending)
1922 {
1923 case CSTP_NONE:
1924 break;
1925
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001926 // Reactivate a pending ":continue", ":break", ":return",
1927 // ":finish" from the try block or a catch clause of this try
1928 // conditional. This is skipped, if there was an error in an
1929 // (unskipped) conditional command or an interrupt afterwards
1930 // or if the finally clause is present and executed a new error,
1931 // interrupt, throw, ":continue", ":break", ":return", or
1932 // ":finish".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001933 case CSTP_CONTINUE:
1934 ex_continue(eap);
1935 break;
1936 case CSTP_BREAK:
1937 ex_break(eap);
1938 break;
1939 case CSTP_RETURN:
Bram Moolenaarfca34d62005-01-04 21:38:36 +00001940 do_return(eap, FALSE, FALSE, rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001941 break;
1942 case CSTP_FINISH:
1943 do_finish(eap, FALSE);
1944 break;
1945
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001946 // When the finally clause was entered due to an error,
1947 // interrupt or throw (as opposed to a ":continue", ":break",
1948 // ":return", or ":finish"), restore the pending values of
1949 // did_emsg, got_int, and did_throw. This is skipped, if there
1950 // was a new error, interrupt, throw, ":continue", ":break",
1951 // ":return", or ":finish". in the finally clause.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001952 default:
1953 if (pending & CSTP_ERROR)
1954 did_emsg = TRUE;
1955 if (pending & CSTP_INTERRUPT)
1956 got_int = TRUE;
1957 if (pending & CSTP_THROW)
1958 rethrow = TRUE;
1959 break;
1960 }
1961 }
1962
1963 if (rethrow)
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001964 // Rethrow the current exception (within this cstack).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001965 do_throw(cstack);
1966 }
1967}
1968
1969/*
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001970 * enter_cleanup() and leave_cleanup()
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001971 *
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001972 * Functions to be called before/after invoking a sequence of autocommands for
1973 * cleanup for a failed command. (Failure means here that a call to emsg()
1974 * has been made, an interrupt occurred, or there is an uncaught exception
1975 * from a previous autocommand execution of the same command.)
1976 *
1977 * Call enter_cleanup() with a pointer to a cleanup_T and pass the same
1978 * pointer to leave_cleanup(). The cleanup_T structure stores the pending
1979 * error/interrupt/exception state.
1980 */
1981
1982/*
1983 * This function works a bit like ex_finally() except that there was not
1984 * actually an extra try block around the part that failed and an error or
1985 * interrupt has not (yet) been converted to an exception. This function
1986 * saves the error/interrupt/ exception state and prepares for the call to
1987 * do_cmdline() that is going to be made for the cleanup autocommand
1988 * execution.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001989 */
1990 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001991enter_cleanup(cleanup_T *csp)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001992{
1993 int pending = CSTP_NONE;
1994
1995 /*
1996 * Postpone did_emsg, got_int, did_throw. The pending values will be
1997 * restored by leave_cleanup() except if there was an aborting error,
1998 * interrupt, or uncaught exception after this function ends.
1999 */
2000 if (did_emsg || got_int || did_throw || need_rethrow)
2001 {
2002 csp->pending = (did_emsg ? CSTP_ERROR : 0)
2003 | (got_int ? CSTP_INTERRUPT : 0)
2004 | (did_throw ? CSTP_THROW : 0)
2005 | (need_rethrow ? CSTP_THROW : 0);
2006
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002007 // If we are currently throwing an exception (did_throw), save it as
2008 // well. On an error not yet converted to an exception, update
2009 // "force_abort" and reset "cause_abort" (as do_errthrow() would do).
2010 // This is needed for the do_cmdline() call that is going to be made
2011 // for autocommand execution. We need not save *msg_list because
2012 // there is an extra instance for every call of do_cmdline(), anyway.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00002013 if (did_throw || need_rethrow)
Bram Moolenaarcae24be2017-07-10 22:12:10 +02002014 {
Bram Moolenaarc0197e22004-09-13 20:26:32 +00002015 csp->exception = current_exception;
Bram Moolenaarcae24be2017-07-10 22:12:10 +02002016 current_exception = NULL;
2017 }
Bram Moolenaarc0197e22004-09-13 20:26:32 +00002018 else
2019 {
2020 csp->exception = NULL;
2021 if (did_emsg)
2022 {
2023 force_abort |= cause_abort;
2024 cause_abort = FALSE;
2025 }
2026 }
2027 did_emsg = got_int = did_throw = need_rethrow = FALSE;
2028
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002029 // Report if required by the 'verbose' option or when debugging.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00002030 report_make_pending(pending, csp->exception);
2031 }
2032 else
2033 {
2034 csp->pending = CSTP_NONE;
2035 csp->exception = NULL;
2036 }
2037}
2038
2039/*
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00002040 * See comment above enter_cleanup() for how this function is used.
2041 *
2042 * This function is a bit like ex_endtry() except that there was not actually
2043 * an extra try block around the part that failed and an error or interrupt
2044 * had not (yet) been converted to an exception when the cleanup autocommand
2045 * sequence was invoked.
2046 *
2047 * This function has to be called with the address of the cleanup_T structure
2048 * filled by enter_cleanup() as an argument; it restores the error/interrupt/
2049 * exception state saved by that function - except there was an aborting
2050 * error, an interrupt or an uncaught exception during execution of the
2051 * cleanup autocommands. In the latter case, the saved error/interrupt/
2052 * exception state is discarded.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00002053 */
2054 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002055leave_cleanup(cleanup_T *csp)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00002056{
2057 int pending = csp->pending;
2058
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002059 if (pending == CSTP_NONE) // nothing to do
Bram Moolenaarc0197e22004-09-13 20:26:32 +00002060 return;
2061
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002062 // If there was an aborting error, an interrupt, or an uncaught exception
2063 // after the corresponding call to enter_cleanup(), discard what has been
2064 // made pending by it. Report this to the user if required by the
2065 // 'verbose' option or when debugging.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00002066 if (aborting() || need_rethrow)
2067 {
2068 if (pending & CSTP_THROW)
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002069 // Cancel the pending exception (includes report).
Bram Moolenaarc0197e22004-09-13 20:26:32 +00002070 discard_exception((except_T *)csp->exception, FALSE);
2071 else
2072 report_discard_pending(pending, NULL);
2073
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002074 // If an error was about to be converted to an exception when
2075 // enter_cleanup() was called, free the message list.
Bram Moolenaar4632d292006-11-28 17:36:37 +00002076 if (msg_list != NULL)
Bram Moolenaar9fee7d42013-11-28 17:04:43 +01002077 free_global_msglist();
Bram Moolenaarc0197e22004-09-13 20:26:32 +00002078 }
2079
2080 /*
2081 * If there was no new error, interrupt, or throw between the calls
2082 * to enter_cleanup() and leave_cleanup(), restore the pending
2083 * error/interrupt/exception state.
2084 */
2085 else
2086 {
2087 /*
2088 * If there was an exception being thrown when enter_cleanup() was
2089 * called, we need to rethrow it. Make it the exception currently
2090 * being thrown.
2091 */
2092 if (pending & CSTP_THROW)
2093 current_exception = csp->exception;
2094
2095 /*
2096 * If an error was about to be converted to an exception when
2097 * enter_cleanup() was called, let "cause_abort" take the part of
2098 * "force_abort" (as done by cause_errthrow()).
2099 */
2100 else if (pending & CSTP_ERROR)
2101 {
2102 cause_abort = force_abort;
2103 force_abort = FALSE;
2104 }
2105
2106 /*
2107 * Restore the pending values of did_emsg, got_int, and did_throw.
2108 */
2109 if (pending & CSTP_ERROR)
2110 did_emsg = TRUE;
2111 if (pending & CSTP_INTERRUPT)
2112 got_int = TRUE;
2113 if (pending & CSTP_THROW)
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002114 need_rethrow = TRUE; // did_throw will be set by do_one_cmd()
Bram Moolenaarc0197e22004-09-13 20:26:32 +00002115
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002116 // Report if required by the 'verbose' option or when debugging.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00002117 report_resume_pending(pending,
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00002118 (pending & CSTP_THROW) ? (void *)current_exception : NULL);
Bram Moolenaarc0197e22004-09-13 20:26:32 +00002119 }
2120}
2121
2122
2123/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002124 * Make conditionals inactive and discard what's pending in finally clauses
2125 * until the conditional type searched for or a try conditional not in its
Bram Moolenaarde8866b2005-01-06 23:24:37 +00002126 * finally clause is reached. If this is in an active catch clause, finish
2127 * the caught exception.
2128 * Return the cstack index where the search stopped.
Bram Moolenaar12805862005-01-05 22:16:17 +00002129 * Values used for "searched_cond" are (CSF_WHILE | CSF_FOR) or CSF_TRY or 0,
2130 * the latter meaning the innermost try conditional not in its finally clause.
2131 * "inclusive" tells whether the conditional searched for should be made
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02002132 * inactive itself (a try conditional not in its finally clause possibly find
Bram Moolenaar12805862005-01-05 22:16:17 +00002133 * before is always made inactive). If "inclusive" is TRUE and
2134 * "searched_cond" is CSF_TRY|CSF_SILENT, the saved former value of
2135 * "emsg_silent", if reset when the try conditional finally reached was
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02002136 * entered, is restored (used by ex_endtry()). This is normally done only
Bram Moolenaar12805862005-01-05 22:16:17 +00002137 * when such a try conditional is left.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002138 */
2139 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002140cleanup_conditionals(
Bram Moolenaarddef1292019-12-16 17:10:33 +01002141 cstack_T *cstack,
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002142 int searched_cond,
2143 int inclusive)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002144{
2145 int idx;
2146 int stop = FALSE;
2147
2148 for (idx = cstack->cs_idx; idx >= 0; --idx)
2149 {
2150 if (cstack->cs_flags[idx] & CSF_TRY)
2151 {
2152 /*
2153 * Discard anything pending in a finally clause and continue the
2154 * search. There may also be a pending ":continue", ":break",
2155 * ":return", or ":finish" before the finally clause. We must not
2156 * discard it, unless an error or interrupt occurred afterwards.
2157 */
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002158 if (did_emsg || got_int || (cstack->cs_flags[idx] & CSF_FINALLY))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002159 {
2160 switch (cstack->cs_pending[idx])
2161 {
2162 case CSTP_NONE:
2163 break;
2164
2165 case CSTP_CONTINUE:
2166 case CSTP_BREAK:
2167 case CSTP_FINISH:
2168 report_discard_pending(cstack->cs_pending[idx], NULL);
2169 cstack->cs_pending[idx] = CSTP_NONE;
2170 break;
2171
2172 case CSTP_RETURN:
2173 report_discard_pending(CSTP_RETURN,
Bram Moolenaarfca34d62005-01-04 21:38:36 +00002174 cstack->cs_rettv[idx]);
2175 discard_pending_return(cstack->cs_rettv[idx]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002176 cstack->cs_pending[idx] = CSTP_NONE;
2177 break;
2178
2179 default:
2180 if (cstack->cs_flags[idx] & CSF_FINALLY)
2181 {
2182 if (cstack->cs_pending[idx] & CSTP_THROW)
2183 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002184 // Cancel the pending exception. This is in the
2185 // finally clause, so that the stack of the
2186 // caught exceptions is not involved.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002187 discard_exception((except_T *)
2188 cstack->cs_exception[idx],
2189 FALSE);
2190 }
2191 else
2192 report_discard_pending(cstack->cs_pending[idx],
2193 NULL);
2194 cstack->cs_pending[idx] = CSTP_NONE;
2195 }
2196 break;
2197 }
2198 }
2199
2200 /*
2201 * Stop at a try conditional not in its finally clause. If this try
2202 * conditional is in an active catch clause, finish the caught
2203 * exception.
2204 */
2205 if (!(cstack->cs_flags[idx] & CSF_FINALLY))
2206 {
2207 if ((cstack->cs_flags[idx] & CSF_ACTIVE)
2208 && (cstack->cs_flags[idx] & CSF_CAUGHT))
2209 finish_exception((except_T *)cstack->cs_exception[idx]);
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002210 // Stop at this try conditional - except the try block never
2211 // got active (because of an inactive surrounding conditional
2212 // or when the ":try" appeared after an error or interrupt or
2213 // throw).
Bram Moolenaar071d4272004-06-13 20:20:40 +00002214 if (cstack->cs_flags[idx] & CSF_TRUE)
2215 {
2216 if (searched_cond == 0 && !inclusive)
2217 break;
2218 stop = TRUE;
2219 }
2220 }
2221 }
2222
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002223 // Stop on the searched conditional type (even when the surrounding
2224 // conditional is not active or something has been made pending).
2225 // If "inclusive" is TRUE and "searched_cond" is CSF_TRY|CSF_SILENT,
2226 // check first whether "emsg_silent" needs to be restored.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002227 if (cstack->cs_flags[idx] & searched_cond)
2228 {
2229 if (!inclusive)
2230 break;
2231 stop = TRUE;
2232 }
2233 cstack->cs_flags[idx] &= ~CSF_ACTIVE;
2234 if (stop && searched_cond != (CSF_TRY | CSF_SILENT))
2235 break;
2236
2237 /*
Bram Moolenaarccc18222007-05-10 18:25:20 +00002238 * When leaving a try conditional that reset "emsg_silent" on its
2239 * entry after saving the original value, restore that value here and
2240 * free the memory used to store it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002241 */
2242 if ((cstack->cs_flags[idx] & CSF_TRY)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002243 && (cstack->cs_flags[idx] & CSF_SILENT))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002244 {
2245 eslist_T *elem;
2246
2247 elem = cstack->cs_emsg_silent_list;
2248 cstack->cs_emsg_silent_list = elem->next;
2249 emsg_silent = elem->saved_emsg_silent;
2250 vim_free(elem);
2251 cstack->cs_flags[idx] &= ~CSF_SILENT;
2252 }
2253 if (stop)
2254 break;
2255 }
2256 return idx;
2257}
2258
2259/*
Bram Moolenaar12805862005-01-05 22:16:17 +00002260 * Return an appropriate error message for a missing endwhile/endfor/endif.
2261 */
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002262 static char *
Bram Moolenaarddef1292019-12-16 17:10:33 +01002263get_end_emsg(cstack_T *cstack)
Bram Moolenaar12805862005-01-05 22:16:17 +00002264{
2265 if (cstack->cs_flags[cstack->cs_idx] & CSF_WHILE)
2266 return e_endwhile;
2267 if (cstack->cs_flags[cstack->cs_idx] & CSF_FOR)
2268 return e_endfor;
2269 return e_endif;
2270}
2271
2272
2273/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002274 * Rewind conditionals until index "idx" is reached. "cond_type" and
2275 * "cond_level" specify a conditional type and the address of a level variable
2276 * which is to be decremented with each skipped conditional of the specified
2277 * type.
Bram Moolenaarde8866b2005-01-06 23:24:37 +00002278 * Also free "for info" structures where needed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002279 */
Bram Moolenaarde8866b2005-01-06 23:24:37 +00002280 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002281rewind_conditionals(
Bram Moolenaarddef1292019-12-16 17:10:33 +01002282 cstack_T *cstack,
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002283 int idx,
2284 int cond_type,
2285 int *cond_level)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002286{
2287 while (cstack->cs_idx > idx)
2288 {
2289 if (cstack->cs_flags[cstack->cs_idx] & cond_type)
2290 --*cond_level;
Bram Moolenaarde8866b2005-01-06 23:24:37 +00002291 if (cstack->cs_flags[cstack->cs_idx] & CSF_FOR)
2292 free_for_info(cstack->cs_forinfo[cstack->cs_idx]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002293 --cstack->cs_idx;
2294 }
2295}
2296
2297/*
2298 * ":endfunction" when not after a ":function"
2299 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002300 void
Bram Moolenaar6e949782020-04-13 17:21:00 +02002301ex_endfunction(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002302{
Bram Moolenaar6e949782020-04-13 17:21:00 +02002303 if (eap->cmdidx == CMD_enddef)
2304 emsg(_("E193: :enddef not inside a function"));
2305 else
2306 emsg(_("E193: :endfunction not inside a function"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002307}
2308
2309/*
Bram Moolenaar12805862005-01-05 22:16:17 +00002310 * Return TRUE if the string "p" looks like a ":while" or ":for" command.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002311 */
2312 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002313has_loop_cmd(char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002314{
Bram Moolenaared53fb92007-11-24 20:50:24 +00002315 int len;
2316
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002317 // skip modifiers, white space and ':'
Bram Moolenaared53fb92007-11-24 20:50:24 +00002318 for (;;)
2319 {
2320 while (*p == ' ' || *p == '\t' || *p == ':')
2321 ++p;
2322 len = modifier_len(p);
2323 if (len == 0)
2324 break;
2325 p += len;
2326 }
Bram Moolenaar12805862005-01-05 22:16:17 +00002327 if ((p[0] == 'w' && p[1] == 'h')
2328 || (p[0] == 'f' && p[1] == 'o' && p[2] == 'r'))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002329 return TRUE;
2330 return FALSE;
2331}
2332
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002333#endif // FEAT_EVAL