comparison src/globals.h @ 15543:dd725a8ab112 v8.1.0779

patch 8.1.0779: argument for message functions is inconsistent commit https://github.com/vim/vim/commit/32526b3c1846025f0e655f41efd4e5428da16b6c Author: Bram Moolenaar <Bram@vim.org> Date: Sat Jan 19 17:43:09 2019 +0100 patch 8.1.0779: argument for message functions is inconsistent Problem: Argument for message functions is inconsistent. Solution: Make first argument to msg() "char *".
author Bram Moolenaar <Bram@vim.org>
date Sat, 19 Jan 2019 17:45:07 +0100
parents 41fbbcea0f1b
children 4af72c724093
comparison
equal deleted inserted replaced
15542:5baedae7ca7a 15543:dd725a8ab112
987 987
988 EXTERN char_u *IObuff; /* sprintf's are done in this buffer, 988 EXTERN char_u *IObuff; /* sprintf's are done in this buffer,
989 size is IOSIZE */ 989 size is IOSIZE */
990 EXTERN char_u *NameBuff; /* file names are expanded in this 990 EXTERN char_u *NameBuff; /* file names are expanded in this
991 * buffer, size is MAXPATHL */ 991 * buffer, size is MAXPATHL */
992 EXTERN char_u msg_buf[MSG_BUF_LEN]; /* small buffer for messages */ 992 EXTERN char msg_buf[MSG_BUF_LEN]; /* small buffer for messages */
993 993
994 /* When non-zero, postpone redrawing. */ 994 /* When non-zero, postpone redrawing. */
995 EXTERN int RedrawingDisabled INIT(= 0); 995 EXTERN int RedrawingDisabled INIT(= 0);
996 996
997 EXTERN int readonlymode INIT(= FALSE); /* Set to TRUE for "view" */ 997 EXTERN int readonlymode INIT(= FALSE); /* Set to TRUE for "view" */