changeset 9385:60db35a20823 v7.4.1974

commit https://github.com/vim/vim/commit/4a6c670b844a3ef9aec865a8216eaf363bab8721 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Jul 1 15:48:05 2016 +0200 patch 7.4.1974 Problem: GUI has a problem with some termcodes. Solution: Handle negative numbers. (Kazunobu Kuriyama)
author Christian Brabandt <cb@256bit.org>
date Fri, 01 Jul 2016 16:00:06 +0200
parents f70535d8eaa2
children 80deab13679b
files src/gui.c src/version.c
diffstat 2 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/gui.c
+++ b/src/gui.c
@@ -1773,7 +1773,7 @@ gui_write(
 	if (s[0] == ESC && s[1] == '|')
 	{
 	    p = s + 2;
-	    if (VIM_ISDIGIT(*p))
+	    if (VIM_ISDIGIT(*p) || (*p == '-' && VIM_ISDIGIT(*(p + 1))))
 	    {
 		arg1 = getdigits(&p);
 		if (p > s + len)
--- a/src/version.c
+++ b/src/version.c
@@ -754,6 +754,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    1974,
+/**/
     1973,
 /**/
     1972,