aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/ex_eval.h
diff options
context:
space:
mode:
authorJan Edmund Lazo <jan.lazo@mail.utoronto.ca>2019-09-02 12:11:45 -0400
committerJan Edmund Lazo <jan.lazo@mail.utoronto.ca>2019-09-02 12:19:10 -0400
commit4a608180714eb1ea7bfd07a083b314cc3324f5b7 (patch)
treed1eca8e897b9c5f7901b1990b66783f5f74af03e /src/nvim/ex_eval.h
parent55c66d6c19ae46a0f6590be93a9692c2cb4f10e4 (diff)
downloadrneovim-4a608180714eb1ea7bfd07a083b314cc3324f5b7.tar.gz
rneovim-4a608180714eb1ea7bfd07a083b314cc3324f5b7.tar.bz2
rneovim-4a608180714eb1ea7bfd07a083b314cc3324f5b7.zip
vim-patch:8.0.1729: no comma after last enum item
Problem: No comma after last enum item. Solution: Add a few commas to check if this works for all compilers. Also add a few // comments. https://github.com/vim/vim/commit/ea3ece405ab55f44018257bd2f5021231af8e87f
Diffstat (limited to 'src/nvim/ex_eval.h')
-rw-r--r--src/nvim/ex_eval.h2
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;
/*