summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2022-11-10 17:05:28 +0000
committerBram Moolenaar <Bram@vim.org>2022-11-10 17:05:28 +0000
commit09a93e3e66689c691a00fce25e4ce310d81edaee (patch)
treec4c932b215393dd03cd6d407e7db8f730abe1083
parent7265851b2b4e5a63c0a02a9057dee237502ee557 (diff)
patch 9.0.0855: comment not located above the code it refers tov9.0.0855
Problem: Comment not located above the code it refers to. Solution: Move the comment. (closes #11527)
-rw-r--r--src/spell.h4
-rw-r--r--src/version.c2
2 files changed, 4 insertions, 2 deletions
diff --git a/src/spell.h b/src/spell.h
index be11c9f612..c25b3b9502 100644
--- a/src/spell.h
+++ b/src/spell.h
@@ -280,8 +280,6 @@ typedef struct spelltab_S
#endif
#ifdef FEAT_SPELL
-// First language that is loaded, start of the linked list of loaded
-// languages.
# ifdef IN_SPELL_C
# define SPELL_EXTERN
# define SPELL_INIT(x) x
@@ -290,6 +288,8 @@ typedef struct spelltab_S
# define SPELL_INIT(x)
# endif
+// First language that is loaded, start of the linked list of loaded
+// languages.
SPELL_EXTERN slang_T *first_lang SPELL_INIT(= NULL);
// file used for "zG" and "zW"
diff --git a/src/version.c b/src/version.c
index a759a28592..acade23d35 100644
--- a/src/version.c
+++ b/src/version.c
@@ -696,6 +696,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 855,
+/**/
854,
/**/
853,