# HG changeset patch # User Christian Brabandt # Date 1500725705 -7200 # Node ID 30247960c8a758d580e3a77a525ac4a73da087e9 # Parent 0539c81284db12dfce1d089c573325bcb63e3c2d patch 8.0.0741: cannot build with HPUX commit https://github.com/vim/vim/commit/5f7e7bdcf865df67099c59013775d14c85358300 Author: Bram Moolenaar Date: Sat Jul 22 14:08:43 2017 +0200 patch 8.0.0741: cannot build with HPUX Problem: Cannot build with HPUX. Solution: Rename envbuf_TERM to envbuf_Term. (John Marriott) diff --git a/src/os_unix.c b/src/os_unix.c --- a/src/os_unix.c +++ b/src/os_unix.c @@ -4059,7 +4059,7 @@ set_child_environment(long rows, long co # 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 --- a/src/version.c +++ b/src/version.c @@ -770,6 +770,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 741, +/**/ 740, /**/ 739,