diff options
author | Bram Moolenaar <Bram@vim.org> | 2017-02-23 19:03:28 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2017-02-23 19:03:28 +0100 |
commit | b544f3c81f1e6a50322855681ac266ffaa8e313c (patch) | |
tree | 65ae4057660ce5f73ad2b3e68fe4645570702b4d /src/if_py_both.h | |
parent | dc9a081712ec8c140e6d4909e9f6b03a629d32d3 (diff) | |
download | vim-git-b544f3c81f1e6a50322855681ac266ffaa8e313c.tar.gz |
patch 8.0.0360: sometimes VimL is used instead of "Vim script"v8.0.0360
Problem: Sometimes VimL is used, which is confusing.
Solution: Consistently use "Vim script". (Hirohito Higashi)
Diffstat (limited to 'src/if_py_both.h')
-rw-r--r-- | src/if_py_both.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/if_py_both.h b/src/if_py_both.h index 4cd373402..78c70e700 100644 --- a/src/if_py_both.h +++ b/src/if_py_both.h @@ -582,9 +582,9 @@ VimTryStart(void) VimTryEnd(void) { --trylevel; - /* Without this it stops processing all subsequent VimL commands and - * generates strange error messages if I e.g. try calling Test() in a - * cycle */ + /* Without this it stops processing all subsequent Vim script commands and + * generates strange error messages if I e.g. try calling Test() in a cycle + */ did_emsg = FALSE; /* Keyboard interrupt should be preferred over anything else */ if (got_int) @@ -625,7 +625,7 @@ VimTryEnd(void) discard_current_exception(); return -1; } - /* Finally transform VimL exception to python one */ + /* Finally transform Vim script exception to python one */ else { PyErr_SetVim((char *)current_exception->value); |