diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2019-09-02 11:28:12 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-02 11:28:12 -0700 |
commit | d3c17d50d828d7c983f58fc37590126091316930 (patch) | |
tree | d1eca8e897b9c5f7901b1990b66783f5f74af03e /src/nvim/ex_eval.h | |
parent | cb339ca0fb27976daca1909557d2862be9629d0e (diff) | |
parent | 4a608180714eb1ea7bfd07a083b314cc3324f5b7 (diff) | |
download | rneovim-d3c17d50d828d7c983f58fc37590126091316930.tar.gz rneovim-d3c17d50d828d7c983f58fc37590126091316930.tar.bz2 rneovim-d3c17d50d828d7c983f58fc37590126091316930.zip |
Merge #10918 from janlazo/vim-8.0.1697
vim-patch:8.0.{1697,1729}
Diffstat (limited to 'src/nvim/ex_eval.h')
-rw-r--r-- | src/nvim/ex_eval.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/ex_eval.h b/src/nvim/ex_eval.h index d5f8737bf3..2237b6aca3 100644 --- a/src/nvim/ex_eval.h +++ b/src/nvim/ex_eval.h @@ -94,7 +94,7 @@ typedef enum { ET_USER, // exception caused by ":throw" command ET_ERROR, // error exception - ET_INTERRUPT // interrupt exception triggered by Ctrl-C + ET_INTERRUPT, // interrupt exception triggered by Ctrl-C } except_type_T; /* |