1
0
forked from aniani/vim

updated for version 7.2-198

This commit is contained in:
Bram Moolenaar
2009-06-16 09:07:49 +00:00
parent 446b179cac
commit 0bd40c0c0a
2 changed files with 7 additions and 5 deletions

View File

@@ -676,6 +676,8 @@ static char *(features[]) =
static int included_patches[] = static int included_patches[] =
{ /* Add new patch number below this line */ { /* Add new patch number below this line */
/**/
198,
/**/ /**/
197, 197,
/**/ /**/

View File

@@ -1345,11 +1345,11 @@ typedef enum
# define MSG_BUF_CLEN MSG_BUF_LEN /* cell length */ # define MSG_BUF_CLEN MSG_BUF_LEN /* cell length */
#endif #endif
#if defined(AMIGA) || defined(__linux__) || defined(__QNX__) || defined(__CYGWIN32__) || defined(_AIX) /* Size of the buffer used for tgetent(). Unfortunately this is largely
# define TBUFSZ 2048 /* buffer size for termcap entry */ * undocumented, some systems use 1024. Using a buffer that is too small
#else * causes a buffer overrun and a crash. Use the maximum known value to stay
# define TBUFSZ 1024 /* buffer size for termcap entry */ * on the safe side. */
#endif #define TBUFSZ 2048 /* buffer size for termcap entry */
/* /*
* Maximum length of key sequence to be mapped. * Maximum length of key sequence to be mapped.