diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2020-04-12 15:58:14 -0400 |
---|---|---|
committer | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2020-04-12 16:04:51 -0400 |
commit | a122f6c6d4d64ab6a3bcd55bde220dc115acd73c (patch) | |
tree | 31bd8bca21028be79e3111a53725144e854d92f5 /src/nvim/globals.h | |
parent | 0f18c718cd91056d6eef5618fbb356b6c8ba1aa8 (diff) | |
download | rneovim-a122f6c6d4d64ab6a3bcd55bde220dc115acd73c.tar.gz rneovim-a122f6c6d4d64ab6a3bcd55bde220dc115acd73c.tar.bz2 rneovim-a122f6c6d4d64ab6a3bcd55bde220dc115acd73c.zip |
vim-patch:8.2.0560: compiler warning in tiny build
Problem: Compiler warning in tiny build.
Solution: Move declaration inside #ifdef. (Dominique Pelle, closes vim/vim#5915)
https://github.com/vim/vim/commit/2196bce56fcd56b0eaece50c079bac99f5bc31af
Diffstat (limited to 'src/nvim/globals.h')
-rw-r--r-- | src/nvim/globals.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/globals.h b/src/nvim/globals.h index a939eb3b9c..f102c3ddd8 100644 --- a/src/nvim/globals.h +++ b/src/nvim/globals.h @@ -296,7 +296,7 @@ EXTERN struct msglist **msg_list INIT(= NULL); /// interrupt message or reporting an exception that is still uncaught at the /// top level (which has already been discarded then). Also used for the error /// message when no exception can be thrown. -EXTERN int suppress_errthrow INIT(= false); +EXTERN bool suppress_errthrow INIT(= false); /// The stack of all caught and not finished exceptions. The exception on the /// top of the stack is the one got by evaluation of v:exception. The complete |