]> git.pld-linux.org Git - packages/vim.git/blame - 7.3.364
- new
[packages/vim.git] / 7.3.364
CommitLineData
ae497238
AG
1To: vim_dev@googlegroups.com
2Subject: Patch 7.3.364
3Fcc: outbox
4From: Bram Moolenaar <Bram@moolenaar.net>
5Mime-Version: 1.0
6Content-Type: text/plain; charset=UTF-8
7Content-Transfer-Encoding: 8bit
8------------
9
10Patch 7.3.364 (after 7.3.353)
11Problem: Can't compile on HP-UX. (John Marriott)
12Solution: Only use TTYM_URXVT when it is defined.
13Files: src/term.c
14
15
16*** ../vim-7.3.363/src/term.c 2011-11-30 14:47:12.000000000 +0100
17--- src/term.c 2011-12-01 20:53:57.000000000 +0100
18***************
19*** 4060,4066 ****
20 if (tp[1 + (tp[0] != CSI)] == '>' && j == 2)
21 {
22 /* if xterm version >= 95 use mouse dragging */
23! if (extra >= 95 && ttym_flags != TTYM_URXVT)
24 set_option_value((char_u *)"ttym", 0L,
25 (char_u *)"xterm2", 0);
26 /* if xterm version >= 141 try to get termcap codes */
27--- 4060,4070 ----
28 if (tp[1 + (tp[0] != CSI)] == '>' && j == 2)
29 {
30 /* if xterm version >= 95 use mouse dragging */
31! if (extra >= 95
32! # ifdef TTYM_URXVT
33! && ttym_flags != TTYM_URXVT
34! # endif
35! )
36 set_option_value((char_u *)"ttym", 0L,
37 (char_u *)"xterm2", 0);
38 /* if xterm version >= 141 try to get termcap codes */
39*** ../vim-7.3.363/src/version.c 2011-11-30 17:20:18.000000000 +0100
40--- src/version.c 2011-12-01 20:56:55.000000000 +0100
41***************
42*** 716,717 ****
43--- 716,719 ----
44 { /* Add new patch number below this line */
45+ /**/
46+ 364,
47 /**/
48
49--
50hundred-and-one symptoms of being an internet addict:
51224. You set up your own Web page. You set up a Web page for each
52 of your kids... and your pets.
53
54 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
55/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
56\\\ an exciting new programming language -- http://www.Zimbu.org ///
57 \\\ help me help AIDS victims -- http://ICCF-Holland.org ///
This page took 0.036164 seconds and 4 git commands to generate.