comparison src/netbeans.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 fd3346e3ccc0
children 28398206597f
comparison
equal deleted inserted replaced
2665:18061514324f 2666:1a0d346695fa
13 * integration protocol. Be careful! The protocol uses offsets 13 * integration protocol. Be careful! The protocol uses offsets
14 * which are *between* characters, whereas vim uses line number 14 * which are *between* characters, whereas vim uses line number
15 * and column number which are *on* characters. 15 * and column number which are *on* characters.
16 * See ":help netbeans-protocol" for explanation. 16 * See ":help netbeans-protocol" for explanation.
17 */ 17 */
18
19 #if defined(MSDOS) || defined(WIN16) || defined(WIN32) || defined(_WIN64)
20 # include "vimio.h" /* for mch_open(), must be before vim.h */
21 #endif
22 18
23 #include "vim.h" 19 #include "vim.h"
24 20
25 #if defined(FEAT_NETBEANS_INTG) || defined(PROTO) 21 #if defined(FEAT_NETBEANS_INTG) || defined(PROTO)
26 22