From 5f7e7bdcf865df67099c59013775d14c85358300 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Sat, 22 Jul 2017 14:08:43 +0200 Subject: patch 8.0.0741: cannot build with HPUX Problem: Cannot build with HPUX. Solution: Rename envbuf_TERM to envbuf_Term. (John Marriott) --- src/os_unix.c | 2 +- src/version.c | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/os_unix.c b/src/os_unix.c index 9869d30da..ad70465b0 100644 --- a/src/os_unix.c +++ b/src/os_unix.c @@ -4059,7 +4059,7 @@ set_child_environment(long rows, long columns, char *term) # ifdef HAVE_SETENV char envbuf[50]; # else - static char envbuf_TERM[30]; + static char envbuf_Term[30]; static char envbuf_Rows[20]; static char envbuf_Lines[20]; static char envbuf_Columns[20]; diff --git a/src/version.c b/src/version.c index 399641bab..8ef9b5d06 100644 --- a/src/version.c +++ b/src/version.c @@ -769,6 +769,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 741, /**/ 740, /**/ -- cgit v1.2.1