summaryrefslogtreecommitdiffstats
path: root/src/spell.h
diff options
context:
space:
mode:
authorkylo252 <59826753+kylo252@users.noreply.github.com>2022-03-27 20:05:17 +0100
committerBram Moolenaar <Bram@vim.org>2022-03-27 20:05:17 +0100
commit9dac9b1751dd43c02470cc6a2aecaeea27abcc80 (patch)
treeb4f2ed0cd629c7773bbb6fee0ed6d0ec59e8eeaf /src/spell.h
parent3e559cd88486ffab6b6fb4e0921b4600d137a617 (diff)
patch 8.2.4639: not sufficient parenthesis in preprocessor macros
Problem: Not sufficient parenthesis in preprocessor macros. Solution: Add more parenthesis. (closes #10031)
Diffstat (limited to 'src/spell.h')
-rw-r--r--src/spell.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/spell.h b/src/spell.h
index e1ca380e05..a085b0b0cd 100644
--- a/src/spell.h
+++ b/src/spell.h
@@ -211,9 +211,9 @@ typedef struct salitem_S
// Values for SP_*ERROR are negative, positive values are used by
// read_cnt_string().
-#define SP_TRUNCERROR -1 // spell file truncated error
-#define SP_FORMERROR -2 // format error in spell file
-#define SP_OTHERERROR -3 // other error while reading spell file
+#define SP_TRUNCERROR (-1) // spell file truncated error
+#define SP_FORMERROR (-2) // format error in spell file
+#define SP_OTHERERROR (-3) // other error while reading spell file
/*
* Structure used in "b_langp", filled from 'spelllang'.