diff src/term.c @ 3980:aab4b29520e7 v7.3.745

updated for version 7.3.745 Problem: Automatically setting 'ttymouse' doesn't work. Solution: Reset the "option was set" flag when using the default.
author Bram Moolenaar <bram@vim.org>
date Wed, 05 Dec 2012 14:43:02 +0100
parents 4ffb6f9b58e0
children ad21448af931
line wrap: on
line diff
--- a/src/term.c
+++ b/src/term.c
@@ -1864,7 +1864,12 @@ set_termname(term)
 	}
 #  endif
 	if (p != NULL)
+	{
 	    set_option_value((char_u *)"ttym", 0L, p, 0);
+	    /* Reset the WAS_SET flag, 'ttymouse' can be set to "sgr" or
+	     * "xterm2" in check_termcode(). */
+	    reset_option_was_set((char_u *)"ttym");
+	}
 	if (p == NULL
 #   ifdef FEAT_GUI
 		|| gui.in_use