diff options
author | Bram Moolenaar <Bram@vim.org> | 2004-09-02 19:12:26 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2004-09-02 19:12:26 +0000 |
commit | d4755bb0e04fca334675f1503bd6474b017a9bba (patch) | |
tree | 8be8df859191e78ee9eef80d3b341fd5d0c1b81b /src/ex_eval.c | |
parent | 269ec658f0fad22b2bf9f71b06a4e6e10277f0e5 (diff) | |
download | vim-git-d4755bb0e04fca334675f1503bd6474b017a9bba.tar.gz |
updated for version 7.0014
Diffstat (limited to 'src/ex_eval.c')
-rw-r--r-- | src/ex_eval.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/ex_eval.c b/src/ex_eval.c index 1386115e8..284ae3f88 100644 --- a/src/ex_eval.c +++ b/src/ex_eval.c @@ -1620,16 +1620,16 @@ ex_finally(eap) * a missing ":endwhile" detected here, the exception will be * discarded. */ if (did_throw && cstack->cs_exception[cstack->cs_idx] != - current_exception) + current_exception) EMSG(_(e_internal)); } /* - * Set cs_had_finally, so do_cmdline() will reset did_emsg, got_int, - * and did_throw and make the finally clause active. This will - * happen after emsg() has been called for a missing ":endif" or - * a missing ":endwhile" detected here, so that the following - * finally clause will be executed even then. + * Set cs_had_finally, so do_cmdline() will reset did_emsg, + * got_int, and did_throw and make the finally clause active. + * This will happen after emsg() has been called for a missing + * ":endif" or a missing ":endwhile" detected here, so that the + * following finally clause will be executed even then. */ cstack->cs_had_finally = TRUE; } |