comparison src/spell.c @ 2666:1a0d346695fa v7.3.085

updated for version 7.3.085 Problem: Inconsistency with preproc symbols. void * computation. Solution: Include vimio.h from vim.h. Add type cast.
author Bram Moolenaar <bram@vim.org>
date Fri, 17 Dec 2010 18:06:06 +0100
parents e19ecdb13f34
children 0887e8a13e5f
comparison
equal deleted inserted replaced
2665:18061514324f 2666:1a0d346695fa
301 * <sugnr>: X bytes word number that results in this soundfolded word, 301 * <sugnr>: X bytes word number that results in this soundfolded word,
302 * stored as an offset to the previous number in as 302 * stored as an offset to the previous number in as
303 * few bytes as possible, see offset2bytes()) 303 * few bytes as possible, see offset2bytes())
304 */ 304 */
305 305
306 #if defined(MSDOS) || defined(WIN16) || defined(WIN32) || defined(_WIN64)
307 # include "vimio.h" /* for lseek(), must be before vim.h */
308 #endif
309
310 #include "vim.h" 306 #include "vim.h"
311 307
312 #if defined(FEAT_SPELL) || defined(PROTO) 308 #if defined(FEAT_SPELL) || defined(PROTO)
313 309
314 #ifndef UNIX /* it's in os_unix.h for Unix */ 310 #ifndef UNIX /* it's in os_unix.h for Unix */