jkunstle / rpms / vim

Forked from rpms/vim 3 years ago
Clone

Blame SOURCES/7.4.188

073263
To: vim_dev@googlegroups.com
073263
Subject: Patch 7.4.188
073263
Fcc: outbox
073263
From: Bram Moolenaar <Bram@moolenaar.net>
073263
Mime-Version: 1.0
073263
Content-Type: text/plain; charset=UTF-8
073263
Content-Transfer-Encoding: 8bit
073263
------------
073263
073263
Patch 7.4.188
073263
Problem:    SIZEOF_LONG clashes with similar defines in header files.
073263
Solution:   Rename to a name starting with VIM_.  Also for SIZEOF_INT.
073263
Files:      src/if_ruby.c, src/vim.h, src/configure.in, src/auto/configure,
073263
            src/config.h.in, src/fileio.c, src/if_python.c, src/message.c,
073263
            src/spell.c, src/feature.h, src/os_os2_cfg.h, src/os_vms_conf.h,
073263
            src/os_win16.h, src/structs.h
073263
073263
073263
*** ../vim-7.4.187/src/if_ruby.c	2014-02-05 22:41:11.430582669 +0100
073263
--- src/if_ruby.c	2014-02-23 21:55:03.516770208 +0100
073263
***************
073263
*** 89,97 ****
073263
  #endif
073263
  
073263
  #if defined(DYNAMIC_RUBY_VER) && DYNAMIC_RUBY_VER >= 20 \
073263
! 	&& SIZEOF_INT < SIZEOF_LONG
073263
  /* Ruby 2.0 defines a number of static functions which use rb_fix2int and
073263
!  * rb_num2int if SIZEOF_INT < SIZEOF_LONG (64bit) */
073263
  # define rb_fix2int rb_fix2int_stub
073263
  # define rb_num2int rb_num2int_stub
073263
  #endif
073263
--- 89,97 ----
073263
  #endif
073263
  
073263
  #if defined(DYNAMIC_RUBY_VER) && DYNAMIC_RUBY_VER >= 20 \
073263
! 	&& VIM_SIZEOF_INT < VIM_SIZEOF_LONG
073263
  /* Ruby 2.0 defines a number of static functions which use rb_fix2int and
073263
!  * rb_num2int if VIM_SIZEOF_INT < VIM_SIZEOF_LONG (64bit) */
073263
  # define rb_fix2int rb_fix2int_stub
073263
  # define rb_num2int rb_num2int_stub
073263
  #endif
073263
***************
073263
*** 202,208 ****
073263
  # define rb_hash_new			dll_rb_hash_new
073263
  # define rb_inspect			dll_rb_inspect
073263
  # define rb_int2inum			dll_rb_int2inum
073263
! # if SIZEOF_INT < SIZEOF_LONG /* 64 bits only */
073263
  #  define rb_fix2int			dll_rb_fix2int
073263
  #  define rb_num2int			dll_rb_num2int
073263
  #  define rb_num2uint			dll_rb_num2uint
073263
--- 202,208 ----
073263
  # define rb_hash_new			dll_rb_hash_new
073263
  # define rb_inspect			dll_rb_inspect
073263
  # define rb_int2inum			dll_rb_int2inum
073263
! # if VIM_SIZEOF_INT < VIM_SIZEOF_LONG /* 64 bits only */
073263
  #  define rb_fix2int			dll_rb_fix2int
073263
  #  define rb_num2int			dll_rb_num2int
073263
  #  define rb_num2uint			dll_rb_num2uint
073263
***************
073263
*** 310,316 ****
073263
  static VALUE (*dll_rb_hash_new) (void);
073263
  static VALUE (*dll_rb_inspect) (VALUE);
073263
  static VALUE (*dll_rb_int2inum) (long);
073263
! # if SIZEOF_INT < SIZEOF_LONG /* 64 bits only */
073263
  static long (*dll_rb_fix2int) (VALUE);
073263
  static long (*dll_rb_num2int) (VALUE);
073263
  static unsigned long (*dll_rb_num2uint) (VALUE);
073263
--- 310,316 ----
073263
  static VALUE (*dll_rb_hash_new) (void);
073263
  static VALUE (*dll_rb_inspect) (VALUE);
073263
  static VALUE (*dll_rb_int2inum) (long);
073263
! # if VIM_SIZEOF_INT < VIM_SIZEOF_LONG /* 64 bits only */
073263
  static long (*dll_rb_fix2int) (VALUE);
073263
  static long (*dll_rb_num2int) (VALUE);
073263
  static unsigned long (*dll_rb_num2uint) (VALUE);
073263
***************
073263
*** 393,399 ****
073263
      return dll_rb_int2big(x);
073263
  }
073263
  #  if defined(DYNAMIC_RUBY_VER) && DYNAMIC_RUBY_VER >= 20 \
073263
! 	&& SIZEOF_INT < SIZEOF_LONG
073263
  long rb_fix2int_stub(VALUE x)
073263
  {
073263
      return dll_rb_fix2int(x);
073263
--- 393,399 ----
073263
      return dll_rb_int2big(x);
073263
  }
073263
  #  if defined(DYNAMIC_RUBY_VER) && DYNAMIC_RUBY_VER >= 20 \
073263
! 	&& VIM_SIZEOF_INT < VIM_SIZEOF_LONG
073263
  long rb_fix2int_stub(VALUE x)
073263
  {
073263
      return dll_rb_fix2int(x);
073263
***************
073263
*** 466,472 ****
073263
      {"rb_hash_new", (RUBY_PROC*)&dll_rb_hash_new},
073263
      {"rb_inspect", (RUBY_PROC*)&dll_rb_inspect},
073263
      {"rb_int2inum", (RUBY_PROC*)&dll_rb_int2inum},
073263
! # if SIZEOF_INT < SIZEOF_LONG /* 64 bits only */
073263
      {"rb_fix2int", (RUBY_PROC*)&dll_rb_fix2int},
073263
      {"rb_num2int", (RUBY_PROC*)&dll_rb_num2int},
073263
      {"rb_num2uint", (RUBY_PROC*)&dll_rb_num2uint},
073263
--- 466,472 ----
073263
      {"rb_hash_new", (RUBY_PROC*)&dll_rb_hash_new},
073263
      {"rb_inspect", (RUBY_PROC*)&dll_rb_inspect},
073263
      {"rb_int2inum", (RUBY_PROC*)&dll_rb_int2inum},
073263
! # if VIM_SIZEOF_INT < VIM_SIZEOF_LONG /* 64 bits only */
073263
      {"rb_fix2int", (RUBY_PROC*)&dll_rb_fix2int},
073263
      {"rb_num2int", (RUBY_PROC*)&dll_rb_num2int},
073263
      {"rb_num2uint", (RUBY_PROC*)&dll_rb_num2uint},
073263
*** ../vim-7.4.187/src/vim.h	2014-01-14 16:54:53.000000000 +0100
073263
--- src/vim.h	2014-02-23 21:58:23.764769890 +0100
073263
***************
073263
*** 43,49 ****
073263
   * it becomes zero.  This is likely a problem of not being able to run the
073263
   * test program.  Other items from configure may also be wrong then!
073263
   */
073263
! # if (SIZEOF_INT == 0)
073263
      Error: configure did not run properly.  Check auto/config.log.
073263
  # endif
073263
  
073263
--- 43,49 ----
073263
   * it becomes zero.  This is likely a problem of not being able to run the
073263
   * test program.  Other items from configure may also be wrong then!
073263
   */
073263
! # if (VIM_SIZEOF_INT == 0)
073263
      Error: configure did not run properly.  Check auto/config.log.
073263
  # endif
073263
  
073263
***************
073263
*** 148,169 ****
073263
  #endif
073263
  
073263
  /*
073263
!  * SIZEOF_INT is used in feature.h, and the system-specific included files
073263
!  * need items from feature.h.  Therefore define SIZEOF_INT here.
073263
   */
073263
  #ifdef WIN3264
073263
! # define SIZEOF_INT 4
073263
  #endif
073263
  #ifdef MSDOS
073263
  # ifdef DJGPP
073263
  #  ifndef FEAT_GUI_GTK		/* avoid problems when generating prototypes */
073263
! #   define SIZEOF_INT 4		/* 32 bit ints */
073263
  #  endif
073263
  #  define DOS32
073263
  #  define FEAT_CLIPBOARD
073263
  # else
073263
  #  ifndef FEAT_GUI_GTK		/* avoid problems when generating prototypes */
073263
! #   define SIZEOF_INT 2		/* 16 bit ints */
073263
  #  endif
073263
  #  define SMALL_MALLOC		/* 16 bit storage allocation */
073263
  #  define DOS16
073263
--- 148,169 ----
073263
  #endif
073263
  
073263
  /*
073263
!  * VIM_SIZEOF_INT is used in feature.h, and the system-specific included files
073263
!  * need items from feature.h.  Therefore define VIM_SIZEOF_INT here.
073263
   */
073263
  #ifdef WIN3264
073263
! # define VIM_SIZEOF_INT 4
073263
  #endif
073263
  #ifdef MSDOS
073263
  # ifdef DJGPP
073263
  #  ifndef FEAT_GUI_GTK		/* avoid problems when generating prototypes */
073263
! #   define VIM_SIZEOF_INT 4	/* 32 bit ints */
073263
  #  endif
073263
  #  define DOS32
073263
  #  define FEAT_CLIPBOARD
073263
  # else
073263
  #  ifndef FEAT_GUI_GTK		/* avoid problems when generating prototypes */
073263
! #   define VIM_SIZEOF_INT 2	/* 16 bit ints */
073263
  #  endif
073263
  #  define SMALL_MALLOC		/* 16 bit storage allocation */
073263
  #  define DOS16
073263
***************
073263
*** 174,191 ****
073263
    /* Be conservative about sizeof(int). It could be 4 too. */
073263
  # ifndef FEAT_GUI_GTK	/* avoid problems when generating prototypes */
073263
  #  ifdef __GNUC__
073263
! #   define SIZEOF_INT	4
073263
  #  else
073263
! #   define SIZEOF_INT	2
073263
  #  endif
073263
  # endif
073263
  #endif
073263
  #ifdef MACOS
073263
  # if defined(__POWERPC__) || defined(MACOS_X) || defined(__fourbyteints__) \
073263
    || defined(__MRC__) || defined(__SC__) || defined(__APPLE_CC__)/* MPW Compilers */
073263
! #  define SIZEOF_INT 4
073263
  # else
073263
! #  define SIZEOF_INT 2
073263
  # endif
073263
  #endif
073263
  
073263
--- 174,191 ----
073263
    /* Be conservative about sizeof(int). It could be 4 too. */
073263
  # ifndef FEAT_GUI_GTK	/* avoid problems when generating prototypes */
073263
  #  ifdef __GNUC__
073263
! #   define VIM_SIZEOF_INT	4
073263
  #  else
073263
! #   define VIM_SIZEOF_INT	2
073263
  #  endif
073263
  # endif
073263
  #endif
073263
  #ifdef MACOS
073263
  # if defined(__POWERPC__) || defined(MACOS_X) || defined(__fourbyteints__) \
073263
    || defined(__MRC__) || defined(__SC__) || defined(__APPLE_CC__)/* MPW Compilers */
073263
! #  define VIM_SIZEOF_INT 4
073263
  # else
073263
! #  define VIM_SIZEOF_INT 2
073263
  # endif
073263
  #endif
073263
  
073263
***************
073263
*** 417,428 ****
073263
  #define PRINTF_DECIMAL_LONG_U SCANF_DECIMAL_LONG_U
073263
  
073263
  /*
073263
!  * Only systems which use configure will have SIZEOF_OFF_T and SIZEOF_LONG
073263
   * defined, which is ok since those are the same systems which can have
073263
   * varying sizes for off_t.  The other systems will continue to use "%ld" to
073263
   * print off_t since off_t is simply a typedef to long for them.
073263
   */
073263
! #if defined(SIZEOF_OFF_T) && (SIZEOF_OFF_T > SIZEOF_LONG)
073263
  # define LONG_LONG_OFF_T
073263
  #endif
073263
  
073263
--- 417,428 ----
073263
  #define PRINTF_DECIMAL_LONG_U SCANF_DECIMAL_LONG_U
073263
  
073263
  /*
073263
!  * Only systems which use configure will have SIZEOF_OFF_T and VIM_SIZEOF_LONG
073263
   * defined, which is ok since those are the same systems which can have
073263
   * varying sizes for off_t.  The other systems will continue to use "%ld" to
073263
   * print off_t since off_t is simply a typedef to long for them.
073263
   */
073263
! #if defined(SIZEOF_OFF_T) && (SIZEOF_OFF_T > VIM_SIZEOF_LONG)
073263
  # define LONG_LONG_OFF_T
073263
  #endif
073263
  
073263
***************
073263
*** 448,454 ****
073263
  # ifdef UNICODE16
073263
  typedef unsigned short u8char_T;    /* short should be 16 bits */
073263
  # else
073263
! #  if SIZEOF_INT >= 4
073263
  typedef unsigned int u8char_T;	    /* int is 32 bits */
073263
  #  else
073263
  typedef unsigned long u8char_T;	    /* long should be 32 bits or more */
073263
--- 448,454 ----
073263
  # ifdef UNICODE16
073263
  typedef unsigned short u8char_T;    /* short should be 16 bits */
073263
  # else
073263
! #  if VIM_SIZEOF_INT >= 4
073263
  typedef unsigned int u8char_T;	    /* int is 32 bits */
073263
  #  else
073263
  typedef unsigned long u8char_T;	    /* long should be 32 bits or more */
073263
***************
073263
*** 1608,1614 ****
073263
   * With this we restrict the maximum line length to 1073741823. I guess this is
073263
   * not a real problem. BTW:  Longer lines are split.
073263
   */
073263
! #if SIZEOF_INT >= 4
073263
  # ifdef __MVS__
073263
  #  define MAXCOL (0x3fffffffL)		/* maximum column number, 30 bits */
073263
  # else
073263
--- 1608,1614 ----
073263
   * With this we restrict the maximum line length to 1073741823. I guess this is
073263
   * not a real problem. BTW:  Longer lines are split.
073263
   */
073263
! #if VIM_SIZEOF_INT >= 4
073263
  # ifdef __MVS__
073263
  #  define MAXCOL (0x3fffffffL)		/* maximum column number, 30 bits */
073263
  # else
073263
*** ../vim-7.4.187/src/configure.in	2014-02-15 17:18:56.953897128 +0100
073263
--- src/configure.in	2014-02-23 22:37:40.080766138 +0100
073263
***************
073263
*** 3581,3586 ****
073263
--- 3581,3590 ----
073263
  AC_CHECK_SIZEOF([time_t])
073263
  AC_CHECK_SIZEOF([off_t])
073263
  
073263
+ dnl Use different names to avoid clashing with other header files.
073263
+ AC_DEFINE_UNQUOTED(VIM_SIZEOF_INT, [$ac_cv_sizeof_int])
073263
+ AC_DEFINE_UNQUOTED(VIM_SIZEOF_LONG, [$ac_cv_sizeof_long])
073263
+ 
073263
  dnl Make sure that uint32_t is really 32 bits unsigned.
073263
  AC_MSG_CHECKING([uint32_t is 32 bits])
073263
  AC_TRY_RUN([
073263
*** ../vim-7.4.187/src/auto/configure	2013-11-21 12:17:46.000000000 +0100
073263
--- src/auto/configure	2014-02-23 22:37:43.692766132 +0100
073263
***************
073263
*** 5199,5207 ****
073263
--- 5199,5217 ----
073263
  $as_echo_n "checking for mzscheme_base.c... " >&6; }
073263
      if test -f "${SCHEME_COLLECTS}collects/scheme/base.ss" ; then
073263
        MZSCHEME_EXTRA="mzscheme_base.c"
073263
+       MZSCHEME_MZC="${vi_cv_path_mzscheme_pfx}/bin/mzc"
073263
+       MZSCHEME_MOD="++lib scheme/base"
073263
      else
073263
        if test -f "${SCHEME_COLLECTS}collects/scheme/base.rkt" ; then
073263
  	MZSCHEME_EXTRA="mzscheme_base.c"
073263
+ 	MZSCHEME_MZC="${vi_cv_path_mzscheme_pfx}/bin/mzc"
073263
+ 	MZSCHEME_MOD="++lib scheme/base"
073263
+       else
073263
+ 	if test -f "${SCHEME_COLLECTS}collects/racket/base.rkt" ; then
073263
+ 	  MZSCHEME_EXTRA="mzscheme_base.c"
073263
+ 	  MZSCHEME_MZC="${vi_cv_path_mzscheme_pfx}/bin/raco ctool"
073263
+ 	  MZSCHEME_MOD=""
073263
+ 	fi
073263
        fi
073263
      fi
073263
      if test "X$MZSCHEME_EXTRA" != "X" ; then
073263
***************
073263
*** 12323,12328 ****
073263
--- 12333,12347 ----
073263
  
073263
  
073263
  
073263
+ cat >>confdefs.h <<_ACEOF
073263
+ #define VIM_SIZEOF_INT $ac_cv_sizeof_int
073263
+ _ACEOF
073263
+ 
073263
+ cat >>confdefs.h <<_ACEOF
073263
+ #define VIM_SIZEOF_LONG $ac_cv_sizeof_long
073263
+ _ACEOF
073263
+ 
073263
+ 
073263
  { $as_echo "$as_me:${as_lineno-$LINENO}: checking uint32_t is 32 bits" >&5
073263
  $as_echo_n "checking uint32_t is 32 bits... " >&6; }
073263
  if test "$cross_compiling" = yes; then :
073263
*** ../vim-7.4.187/src/config.h.in	2013-11-02 21:04:32.000000000 +0100
073263
--- src/config.h.in	2014-02-23 21:45:36.784771111 +0100
073263
***************
073263
*** 37,46 ****
073263
  #undef UNIX
073263
  
073263
  /* Defined to the size of an int */
073263
! #undef SIZEOF_INT
073263
  
073263
  /* Defined to the size of a long */
073263
! #undef SIZEOF_LONG
073263
  
073263
  /* Defined to the size of off_t */
073263
  #undef SIZEOF_OFF_T
073263
--- 37,46 ----
073263
  #undef UNIX
073263
  
073263
  /* Defined to the size of an int */
073263
! #undef VIM_SIZEOF_INT
073263
  
073263
  /* Defined to the size of a long */
073263
! #undef VIM_SIZEOF_LONG
073263
  
073263
  /* Defined to the size of off_t */
073263
  #undef SIZEOF_OFF_T
073263
*** ../vim-7.4.187/src/fileio.c	2014-02-11 15:23:27.938123631 +0100
073263
--- src/fileio.c	2014-02-23 22:31:00.824766773 +0100
073263
***************
073263
*** 1185,1191 ****
073263
  	 * The amount is limited by the fact that read() only can read
073263
  	 * upto max_unsigned characters (and other things).
073263
  	 */
073263
! #if SIZEOF_INT <= 2
073263
  	if (linerest >= 0x7ff0)
073263
  	{
073263
  	    ++split;
073263
--- 1185,1191 ----
073263
  	 * The amount is limited by the fact that read() only can read
073263
  	 * upto max_unsigned characters (and other things).
073263
  	 */
073263
! #if VIM_SIZEOF_INT <= 2
073263
  	if (linerest >= 0x7ff0)
073263
  	{
073263
  	    ++split;
073263
***************
073263
*** 1197,1203 ****
073263
  	{
073263
  	    if (!skip_read)
073263
  	    {
073263
! #if SIZEOF_INT > 2
073263
  # if defined(SSIZE_MAX) && (SSIZE_MAX < 0x10000L)
073263
  		size = SSIZE_MAX;		    /* use max I/O size, 52K */
073263
  # else
073263
--- 1197,1203 ----
073263
  	{
073263
  	    if (!skip_read)
073263
  	    {
073263
! #if VIM_SIZEOF_INT > 2
073263
  # if defined(SSIZE_MAX) && (SSIZE_MAX < 0x10000L)
073263
  		size = SSIZE_MAX;		    /* use max I/O size, 52K */
073263
  # else
073263
*** ../vim-7.4.187/src/if_python.c	2014-01-14 19:35:49.000000000 +0100
073263
--- src/if_python.c	2014-02-23 21:54:39.212770247 +0100
073263
***************
073263
*** 613,619 ****
073263
  #  endif
073263
  # endif
073263
  # if defined(PY_VERSION_HEX) && PY_VERSION_HEX >= 0x02050000 \
073263
! 	&& SIZEOF_SIZE_T != SIZEOF_INT
073263
  #  ifdef Py_DEBUG
073263
      {"Py_InitModule4TraceRefs_64", (PYTHON_PROC*)&dll_Py_InitModule4},
073263
  #  else
073263
--- 613,619 ----
073263
  #  endif
073263
  # endif
073263
  # if defined(PY_VERSION_HEX) && PY_VERSION_HEX >= 0x02050000 \
073263
! 	&& SIZEOF_SIZE_T != VIM_SIZEOF_INT
073263
  #  ifdef Py_DEBUG
073263
      {"Py_InitModule4TraceRefs_64", (PYTHON_PROC*)&dll_Py_InitModule4},
073263
  #  else
073263
*** ../vim-7.4.187/src/message.c	2013-11-04 02:00:55.000000000 +0100
073263
--- src/message.c	2014-02-23 21:55:16.984770187 +0100
073263
***************
073263
*** 4376,4382 ****
073263
  		    {
073263
  			/* Don't put the #if inside memchr(), it can be a
073263
  			 * macro. */
073263
! #if SIZEOF_INT <= 2
073263
  			char *q = memchr(str_arg, '\0', precision);
073263
  #else
073263
  			/* memchr on HP does not like n > 2^31  !!! */
073263
--- 4376,4382 ----
073263
  		    {
073263
  			/* Don't put the #if inside memchr(), it can be a
073263
  			 * macro. */
073263
! #if VIM_SIZEOF_INT <= 2
073263
  			char *q = memchr(str_arg, '\0', precision);
073263
  #else
073263
  			/* memchr on HP does not like n > 2^31  !!! */
073263
*** ../vim-7.4.187/src/spell.c	2013-11-28 17:41:41.000000000 +0100
073263
--- src/spell.c	2014-02-23 21:55:24.600770175 +0100
073263
***************
073263
*** 317,323 ****
073263
  
073263
  /* Type used for indexes in the word tree need to be at least 4 bytes.  If int
073263
   * is 8 bytes we could use something smaller, but what? */
073263
! #if SIZEOF_INT > 3
073263
  typedef int idx_T;
073263
  #else
073263
  typedef long idx_T;
073263
--- 317,323 ----
073263
  
073263
  /* Type used for indexes in the word tree need to be at least 4 bytes.  If int
073263
   * is 8 bytes we could use something smaller, but what? */
073263
! #if VIM_SIZEOF_INT > 3
073263
  typedef int idx_T;
073263
  #else
073263
  typedef long idx_T;
073263
*** ../vim-7.4.187/src/feature.h	2013-05-18 20:18:20.000000000 +0200
073263
--- src/feature.h	2014-02-23 21:55:54.868770127 +0100
073263
***************
073263
*** 328,334 ****
073263
   *
073263
   * Disabled for EBCDIC as it requires multibyte.
073263
   */
073263
! #if defined(FEAT_BIG) && !defined(WIN16) && SIZEOF_INT >= 4 && !defined(EBCDIC)
073263
  # define FEAT_ARABIC
073263
  #endif
073263
  #ifdef FEAT_ARABIC
073263
--- 328,334 ----
073263
   *
073263
   * Disabled for EBCDIC as it requires multibyte.
073263
   */
073263
! #if defined(FEAT_BIG) && !defined(WIN16) && VIM_SIZEOF_INT >= 4 && !defined(EBCDIC)
073263
  # define FEAT_ARABIC
073263
  #endif
073263
  #ifdef FEAT_ARABIC
073263
***************
073263
*** 640,646 ****
073263
   */
073263
  #if (defined(FEAT_NORMAL) || defined(FEAT_GUI_GTK) || defined(FEAT_ARABIC)) \
073263
  	&& !defined(FEAT_MBYTE) && !defined(WIN16) \
073263
! 	&& SIZEOF_INT >= 4 && !defined(EBCDIC)
073263
  # define FEAT_MBYTE
073263
  #endif
073263
  
073263
--- 640,646 ----
073263
   */
073263
  #if (defined(FEAT_NORMAL) || defined(FEAT_GUI_GTK) || defined(FEAT_ARABIC)) \
073263
  	&& !defined(FEAT_MBYTE) && !defined(WIN16) \
073263
! 	&& VIM_SIZEOF_INT >= 4 && !defined(EBCDIC)
073263
  # define FEAT_MBYTE
073263
  #endif
073263
  
073263
***************
073263
*** 661,667 ****
073263
  # define FEAT_MBYTE
073263
  #endif
073263
  
073263
! #if defined(FEAT_MBYTE) && SIZEOF_INT < 4 && !defined(PROTO)
073263
  	Error: Can only handle multi-byte feature with 32 bit int or larger
073263
  #endif
073263
  
073263
--- 661,667 ----
073263
  # define FEAT_MBYTE
073263
  #endif
073263
  
073263
! #if defined(FEAT_MBYTE) && VIM_SIZEOF_INT < 4 && !defined(PROTO)
073263
  	Error: Can only handle multi-byte feature with 32 bit int or larger
073263
  #endif
073263
  
073263
*** ../vim-7.4.187/src/os_os2_cfg.h	2010-05-15 13:04:11.000000000 +0200
073263
--- src/os_os2_cfg.h	2014-02-23 21:56:03.540770113 +0100
073263
***************
073263
*** 47,53 ****
073263
  #undef UNIX	/* define always by current configure script */
073263
  
073263
  /* Defined to the size of an int */
073263
! #define SIZEOF_INT 4
073263
  
073263
  /*
073263
   * If we cannot trust one of the following from the libraries, we use our
073263
--- 47,53 ----
073263
  #undef UNIX	/* define always by current configure script */
073263
  
073263
  /* Defined to the size of an int */
073263
! #define VIM_SIZEOF_INT 4
073263
  
073263
  /*
073263
   * If we cannot trust one of the following from the libraries, we use our
073263
*** ../vim-7.4.187/src/os_vms_conf.h	2010-07-28 19:07:48.000000000 +0200
073263
--- src/os_vms_conf.h	2014-02-23 21:56:20.700770086 +0100
073263
***************
073263
*** 23,29 ****
073263
  #define HAVE_DATE_TIME
073263
  
073263
  /* Defined to the size of an int */
073263
! #define SIZEOF_INT 4
073263
  
073263
  /* #undef USEBCOPY */
073263
  #define USEMEMMOVE
073263
--- 23,29 ----
073263
  #define HAVE_DATE_TIME
073263
  
073263
  /* Defined to the size of an int */
073263
! #define VIM_SIZEOF_INT 4
073263
  
073263
  /* #undef USEBCOPY */
073263
  #define USEMEMMOVE
073263
*** ../vim-7.4.187/src/os_win16.h	2013-05-06 04:06:04.000000000 +0200
073263
--- src/os_win16.h	2014-02-23 21:56:39.292770056 +0100
073263
***************
073263
*** 55,62 ****
073263
  
073263
  #define FNAME_ILLEGAL "\"*?><|" /* illegal characters in a file name */
073263
  
073263
! #ifndef SIZEOF_INT
073263
! # define SIZEOF_INT 2
073263
  #endif
073263
  
073263
  typedef long off_t;
073263
--- 55,62 ----
073263
  
073263
  #define FNAME_ILLEGAL "\"*?><|" /* illegal characters in a file name */
073263
  
073263
! #ifndef VIM_SIZEOF_INT
073263
! # define VIM_SIZEOF_INT 2
073263
  #endif
073263
  
073263
  typedef long off_t;
073263
*** ../vim-7.4.187/src/structs.h	2014-02-22 23:03:48.716901208 +0100
073263
--- src/structs.h	2014-02-23 21:57:17.680769995 +0100
073263
***************
073263
*** 364,370 ****
073263
  /*
073263
   * structures used in undo.c
073263
   */
073263
! #if SIZEOF_INT > 2
073263
  # define ALIGN_LONG	/* longword alignment and use filler byte */
073263
  # define ALIGN_SIZE (sizeof(long))
073263
  #else
073263
--- 364,370 ----
073263
  /*
073263
   * structures used in undo.c
073263
   */
073263
! #if VIM_SIZEOF_INT > 2
073263
  # define ALIGN_LONG	/* longword alignment and use filler byte */
073263
  # define ALIGN_SIZE (sizeof(long))
073263
  #else
073263
***************
073263
*** 1094,1100 ****
073263
  typedef long_u hash_T;		/* Type for hi_hash */
073263
  
073263
  
073263
! #if SIZEOF_INT <= 3		/* use long if int is smaller than 32 bits */
073263
  typedef long	varnumber_T;
073263
  #else
073263
  typedef int	varnumber_T;
073263
--- 1094,1100 ----
073263
  typedef long_u hash_T;		/* Type for hi_hash */
073263
  
073263
  
073263
! #if VIM_SIZEOF_INT <= 3		/* use long if int is smaller than 32 bits */
073263
  typedef long	varnumber_T;
073263
  #else
073263
  typedef int	varnumber_T;
073263
*** ../vim-7.4.187/src/version.c	2014-02-22 23:49:30.268896843 +0100
073263
--- src/version.c	2014-02-23 22:40:55.708765826 +0100
073263
***************
073263
*** 740,741 ****
073263
--- 740,743 ----
073263
  {   /* Add new patch number below this line */
073263
+ /**/
073263
+     188,
073263
  /**/
073263
073263
-- 
073263
I'm sure that I asked CBuilder to do a "full" install.  Looks like I got
073263
a "fool" install, instead.		Charles E Campbell, Jr, PhD
073263
073263
073263
 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
073263
///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
073263
\\\  an exciting new programming language -- http://www.Zimbu.org        ///
073263
 \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///