From: Bram Moolenaar Date: Fri, 28 Jul 2017 15:04:15 +0000 (+0200) Subject: patch 8.0.0795: terminal feature does not build with older MSVC X-Git-Tag: v8.0.0795 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=607985a95f31f4db238c7d825e548b14da64ac26;p=vim patch 8.0.0795: terminal feature does not build with older MSVC Problem: Terminal feature does not build with older MSVC. Solution: Do not use stdint.h. --- diff --git a/src/libvterm/include/vterm.h b/src/libvterm/include/vterm.h index ccd10c511..e797dffbf 100644 --- a/src/libvterm/include/vterm.h +++ b/src/libvterm/include/vterm.h @@ -8,7 +8,6 @@ extern "C" { #endif -#include #include #include "vterm_keycodes.h" @@ -16,6 +15,10 @@ extern "C" { #define TRUE 1 #define FALSE 0 +/* from stdint.h */ +typedef unsigned char uint8_t; +typedef unsigned int uint32_t; + typedef struct VTerm VTerm; typedef struct VTermState VTermState; typedef struct VTermScreen VTermScreen; diff --git a/src/version.c b/src/version.c index 312ec4ec4..49d553f6c 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 */ +/**/ + 795, /**/ 794, /**/