Merge remote-tracking branch 'origin/master' into lambda

This commit is contained in:
James McCoy
2017-02-22 17:07:47 -05:00
58 changed files with 2507 additions and 2152 deletions

View File

@@ -882,8 +882,13 @@ EXTERN int swap_exists_did_quit INIT(= FALSE);
EXTERN char_u IObuff[IOSIZE]; ///< Buffer for sprintf, I/O, etc.
EXTERN char_u NameBuff[MAXPATHL]; ///< Buffer for expanding file names
EXTERN char_u msg_buf[MSG_BUF_LEN]; ///< Small buffer for messages
EXTERN char os_buf[MAX(MAXPATHL, IOSIZE)]; ///< Buffer for the os/ layer
EXTERN char os_buf[ ///< Buffer for the os/ layer
#if MAXPATHL > IOSIZE
MAXPATHL
#else
IOSIZE
#endif
];
/* When non-zero, postpone redrawing. */
EXTERN int RedrawingDisabled INIT(= 0);