From cfb807026f678e2e99c98baa2b2b7e74b82b0fc7 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Sun, 21 Oct 2012 02:17:45 +0200 Subject: updated for version 7.3.700 Problem: Cannot detect URXVT and SGR mouse support. Solution: add +mouse_urxvt and +mouse_sgr. (Hayaki Saito) --- src/eval.c | 6 ++++++ src/feature.h | 2 ++ src/version.c | 2 ++ 3 files changed, 10 insertions(+) diff --git a/src/eval.c b/src/eval.c index 66b8606e0..2f370b74c 100644 --- a/src/eval.c +++ b/src/eval.c @@ -12276,9 +12276,15 @@ f_has(argvars, rettv) # ifdef FEAT_MOUSE_PTERM "mouse_pterm", # endif +# ifdef FEAT_MOUSE_SGR + "mouse_sgr", +# endif # ifdef FEAT_SYSMOUSE "mouse_sysmouse", # endif +# ifdef FEAT_MOUSE_URXVT + "mouse_urxvt", +# endif # ifdef FEAT_MOUSE_XTERM "mouse_xterm", # endif diff --git a/src/feature.h b/src/feature.h index f33510480..7ef654bb3 100644 --- a/src/feature.h +++ b/src/feature.h @@ -1038,8 +1038,10 @@ * +mouse_gpm Unix only: Include code for Linux console mouse * handling. * +mouse_pterm PTerm mouse support for QNX + * +mouse_sgr Unix only: Include code for for SGR-styled mouse. * +mouse_sysmouse Unix only: Include code for FreeBSD and DragonFly * console mouse handling. + * +mouse_urxvt Unix only: Include code for for urxvt mosue handling. * +mouse Any mouse support (any of the above enabled). */ /* OS/2 and Amiga console have no mouse support */ diff --git a/src/version.c b/src/version.c index e0404d0b3..cbe525cc2 100644 --- a/src/version.c +++ b/src/version.c @@ -719,6 +719,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 700, /**/ 699, /**/ -- cgit v1.2.1