comparison src/term.c @ 6039:182c7b987283 v7.4.359

updated for version 7.4.359 Problem: When 'ttymouse' is set to 'uxterm' the xterm version is not requested. (Tomas Janousek) Solution: Do not mark uxterm as a conflict mouse and add resume_get_esc_sequence().
author Bram Moolenaar <bram@vim.org>
date Wed, 09 Jul 2014 19:13:49 +0200
parents 06c10522d321
children ff3816167b73
comparison
equal deleted inserted replaced
6038:d8d7de0a150b 6039:182c7b987283
3327 crv_status = 0; 3327 crv_status = 0;
3328 if (u7_status == U7_GET) 3328 if (u7_status == U7_GET)
3329 u7_status = 0; 3329 u7_status = 0;
3330 return crv_status == CRV_SENT || u7_status == U7_SENT 3330 return crv_status == CRV_SENT || u7_status == U7_SENT
3331 || xt_index_out > xt_index_in; 3331 || xt_index_out > xt_index_in;
3332 }
3333
3334 /*
3335 * If requesting the version was disabled in did_request_esc_sequence(),
3336 * enable it again.
3337 */
3338 void
3339 resume_get_esc_sequence()
3340 {
3341 if (crv_status == 0)
3342 crv_status = CRV_GET;
3343 if (u7_status == 0)
3344 u7_status = U7_GET;
3332 } 3345 }
3333 # endif 3346 # endif
3334 3347
3335 3348
3336 /* 3349 /*