comparison src/spell.h @ 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 360f286b5869
children
comparison
equal deleted inserted replaced
31040:67d7dcbee535 31041:ce04a773d598
278 # define SPELL_ISUPPER(c) (enc_utf8 && (c) >= 128 ? utf_isupper(c) \ 278 # define SPELL_ISUPPER(c) (enc_utf8 && (c) >= 128 ? utf_isupper(c) \
279 : (c) < 256 ? spelltab.st_isu[c] : (FALSE)) 279 : (c) < 256 ? spelltab.st_isu[c] : (FALSE))
280 #endif 280 #endif
281 281
282 #ifdef FEAT_SPELL 282 #ifdef FEAT_SPELL
283 // First language that is loaded, start of the linked list of loaded
284 // languages.
285 # ifdef IN_SPELL_C 283 # ifdef IN_SPELL_C
286 # define SPELL_EXTERN 284 # define SPELL_EXTERN
287 # define SPELL_INIT(x) x 285 # define SPELL_INIT(x) x
288 # else 286 # else
289 # define SPELL_EXTERN extern 287 # define SPELL_EXTERN extern
290 # define SPELL_INIT(x) 288 # define SPELL_INIT(x)
291 # endif 289 # endif
292 290
291 // First language that is loaded, start of the linked list of loaded
292 // languages.
293 SPELL_EXTERN slang_T *first_lang SPELL_INIT(= NULL); 293 SPELL_EXTERN slang_T *first_lang SPELL_INIT(= NULL);
294 294
295 // file used for "zG" and "zW" 295 // file used for "zG" and "zW"
296 SPELL_EXTERN char_u *int_wordlist SPELL_INIT(= NULL); 296 SPELL_EXTERN char_u *int_wordlist SPELL_INIT(= NULL);
297 297