From: Bram Moolenaar Date: Wed, 23 Apr 2014 10:52:40 +0000 (+0200) Subject: updated for version 7.4.259 X-Git-Tag: v7.4.259 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=62f167f716beb8bfeaadb8ec506a257827f701a2;p=vim updated for version 7.4.259 Problem: Warning for misplaced "const". Solution: Move the "const". (Yukihiro Nakadaira) --- diff --git a/src/os_unix.c b/src/os_unix.c index 32701fdc7..b735a13bb 100644 --- a/src/os_unix.c +++ b/src/os_unix.c @@ -2815,7 +2815,7 @@ mch_copy_sec(from_file, to_file) char_u *from_file; char_u *to_file; { - static const char const *smack_copied_attributes[] = + static const char * const smack_copied_attributes[] = { XATTR_NAME_SMACK, XATTR_NAME_SMACKEXEC, diff --git a/src/version.c b/src/version.c index 6da3fe30e..f8464c0da 100644 --- a/src/version.c +++ b/src/version.c @@ -734,6 +734,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 259, /**/ 258, /**/