]> granicus.if.org Git - vim/commitdiff
updated for version 7.4.305 v7.4.305
authorBram Moolenaar <Bram@vim.org>
Thu, 22 May 2014 16:14:31 +0000 (18:14 +0200)
committerBram Moolenaar <Bram@vim.org>
Thu, 22 May 2014 16:14:31 +0000 (18:14 +0200)
Problem:    Making 'ttymouse' empty after the xterm version was requested
            causes problems. (Elijah Griffin)
Solution:   Do not check for DEC mouse sequences when the xterm version was
            requested.  Also don't request the xterm version when DEC mouse
            was enabled.

src/globals.h
src/os_unix.c
src/proto/term.pro
src/term.c
src/version.c

index a17430d0652f65a7a0ee4da44d867703a57fce60..058341b11799808f8eb373c8a06576f2952fe4bb 100644 (file)
@@ -1333,6 +1333,9 @@ EXTERN HWND       clientWindow INIT(= 0);
 #if defined(UNIX) || defined(VMS)
 EXTERN int     term_is_xterm INIT(= FALSE);    /* xterm-like 'term' */
 #endif
+#if defined(UNIX)
+EXTERN int     xterm_conflict_mouse INIT(= FALSE);
+#endif
 
 #ifdef BACKSLASH_IN_FILENAME
 EXTERN char    psepc INIT(= '\\');     /* normal path separator character */
index 65ce685605bef47130d466cd18edd05527e31b53..78e9914b16cc5a0766452bf5419a4713d730c8b4 100644 (file)
@@ -3667,6 +3667,8 @@ mch_setmouse(on)
     void
 check_mouse_termcode()
 {
+    xterm_conflict_mouse = FALSE;
+
 # ifdef FEAT_MOUSE_XTERM
     if (use_xterm_mouse()
 # ifdef FEAT_MOUSE_URXVT
@@ -3711,7 +3713,7 @@ check_mouse_termcode()
 # endif
 
 # ifdef FEAT_MOUSE_JSB
-    /* conflicts with xterm mouse: "\033[" and "\033[M" ??? */
+    /* There is no conflict, but it was disabled for xterm before. */
     if (!use_xterm_mouse()
 #  ifdef FEAT_GUI
            && !gui.in_use
@@ -3738,32 +3740,40 @@ check_mouse_termcode()
 # endif
 
 # ifdef FEAT_MOUSE_DEC
-    /* conflicts with xterm mouse: "\033[" and "\033[M" */
-    if (!use_xterm_mouse()
+    /* Conflicts with xterm mouse: "\033[" and "\033[M".
+     * Also conflicts with the xterm termresponse, skip this if it was
+     * requested already. */
+    if (!use_xterm_mouse() && !did_request_esc_sequence()
 #  ifdef FEAT_GUI
            && !gui.in_use
 #  endif
            )
+    {
        set_mouse_termcode(KS_DEC_MOUSE, (char_u *)(term_is_8bit(T_NAME)
                     ? IF_EB("\233", CSI_STR) : IF_EB("\033[", ESC_STR "[")));
+       xterm_conflict_mouse = TRUE;
+    }
     else
        del_mouse_termcode(KS_DEC_MOUSE);
 # endif
 # ifdef FEAT_MOUSE_PTERM
     /* same as the dec mouse */
-    if (!use_xterm_mouse()
+    if (!use_xterm_mouse() && !did_request_esc_sequence()
 #  ifdef FEAT_GUI
            && !gui.in_use
 #  endif
            )
+    {
        set_mouse_termcode(KS_PTERM_MOUSE,
                                      (char_u *) IF_EB("\033[", ESC_STR "["));
+       xterm_conflict_mouse = TRUE;
+    }
     else
        del_mouse_termcode(KS_PTERM_MOUSE);
 # endif
 # ifdef FEAT_MOUSE_URXVT
     /* same as the dec mouse */
-    if (use_xterm_mouse() == 3
+    if (use_xterm_mouse() == 3 && !did_request_esc_sequence()
 #  ifdef FEAT_GUI
            && !gui.in_use
 #  endif
@@ -3778,6 +3788,7 @@ check_mouse_termcode()
            mch_setmouse(FALSE);
            setmouse();
        }
+       xterm_conflict_mouse = TRUE;
     }
     else
        del_mouse_termcode(KS_URXVT_MOUSE);
index b3d0df39d81ba968b0ce989363605a4fa2b7bee7..2ae91c45f239f3816b16d9371868d3527dfdbc23 100644 (file)
@@ -34,6 +34,7 @@ void set_shellsize __ARGS((int width, int height, int mustset));
 void settmode __ARGS((int tmode));
 void starttermcap __ARGS((void));
 void stoptermcap __ARGS((void));
+int did_request_esc_sequence __ARGS((void));
 void may_req_termresponse __ARGS((void));
 void may_req_ambiguous_char_width __ARGS((void));
 int swapping_screen __ARGS((void));
index 41974de41b788c87491f79049f0e4fd875f4750a..5251d6b9a1df411d541399e577d558c0f1b843ba 100644 (file)
@@ -153,6 +153,11 @@ char *UP, *BC, PC;
 static char_u *vim_tgetstr __ARGS((char *s, char_u **pp));
 #endif /* HAVE_TGETENT */
 
+#if defined(FEAT_TERMRESPONSE)
+static int xt_index_in = 0;
+static int xt_index_out = 0;
+#endif
+
 static int  detected_8bit = FALSE;     /* detected 8-bit terminal */
 
 static struct builtin_term builtin_termcaps[] =
@@ -3259,7 +3264,7 @@ starttermcap()
            may_req_termresponse();
            /* Immediately check for a response.  If t_Co changes, we don't
             * want to redraw with wrong colors first. */
-           if (crv_status != CRV_GET)
+           if (crv_status == CRV_SENT)
                check_for_codes_from_term();
        }
 #endif
@@ -3306,6 +3311,30 @@ stoptermcap()
     }
 }
 
+#if defined(UNIX) || defined(PROTO)
+/*
+ * Return TRUE when the xterm version was requested or anything else that
+ * would send an ESC sequence back to Vim.
+ * If not sent yet, prevent it from being sent soon.
+ * Used to check whether it is OK to enable checking for DEC mouse codes,
+ * which conflict with may xterm ESC sequences.
+ */
+    int
+did_request_esc_sequence()
+{
+    if (crv_status == CRV_GET)
+       crv_status = 0;
+    if (u7_status == U7_GET)
+       u7_status = 0;
+    return crv_status == CRV_SENT || u7_status == U7_SENT
+# if defined(FEAT_TERMRESPONSE)
+       || xt_index_out > xt_index_in
+# endif
+       ;
+}
+#endif
+
+
 #if defined(FEAT_TERMRESPONSE) || defined(PROTO)
 /*
  * Request version string (for xterm) when needed.
@@ -3319,6 +3348,8 @@ stoptermcap()
  * Insert mode.
  * On Unix only do it when both output and input are a tty (avoid writing
  * request to terminal while reading from a file).
+ * Do not do this when a mouse is being detected that starts with the same ESC
+ * sequence as the termresponse.
  * The result is caught in check_termcode().
  */
     void
@@ -3332,6 +3363,7 @@ may_req_termresponse()
 # ifdef UNIX
            && isatty(1)
            && isatty(read_cmd_fd)
+           && !xterm_conflict_mouse
 # endif
            && *T_CRV != NUL)
     {
@@ -5714,9 +5746,6 @@ show_one_termcode(name, code, printit)
  * termcap codes from the terminal itself.
  * We get them one by one to avoid a very long response string.
  */
-static int xt_index_in = 0;
-static int xt_index_out = 0;
-
     static void
 req_codes_from_term()
 {
index 0578a7d4d1554d974d4dcd4b09b80303fda6951d..fcf412796327d20c39f6aa1acfb9746e45d7506d 100644 (file)
@@ -734,6 +734,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    305,
 /**/
     304,
 /**/