changeset 31041:ce04a773d598 v9.0.0855

patch 9.0.0855: comment not located above the code it refers to Commit: https://github.com/vim/vim/commit/09a93e3e66689c691a00fce25e4ce310d81edaee Author: zeertzjq <zeertzjq@outlook.com> Date: Thu Nov 10 17:05:28 2022 +0000 patch 9.0.0855: comment not located above the code it refers to Problem: Comment not located above the code it refers to. Solution: Move the comment. (closes https://github.com/vim/vim/issues/11527)
author Bram Moolenaar <Bram@vim.org>
date Thu, 10 Nov 2022 18:15:04 +0100
parents 67d7dcbee535
children b6b171e283ce
files src/spell.h src/version.c
diffstat 2 files changed, 4 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- 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"
--- 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,