]> git.pld-linux.org Git - packages/vim.git/blame - 7.2.020
- updated to 7.2.102
[packages/vim.git] / 7.2.020
CommitLineData
3db12ce3
ER
1To: vim-dev@vim.org
2Subject: Patch 7.2.020
3Fcc: outbox
4From: Bram Moolenaar <Bram@moolenaar.net>
5Mime-Version: 1.0
6Content-Type: text/plain; charset=ISO-8859-1
7Content-Transfer-Encoding: 8bit
8------------
9
10Patch 7.2.020
11Problem: Starting the GUI when the executable starts with 'k', but the KDE
12 version no longer exists.
13Solution: Don't have "kvim" start the GUI.
14Files: src/main.c
15
16
17*** ../vim-7.2.019/src/main.c Thu Jul 24 19:34:23 2008
18--- src/main.c Sun Sep 14 13:26:10 2008
19***************
20*** 1457,1463 ****
21 ++initstr;
22 }
23
24! if (TOLOWER_ASC(initstr[0]) == 'g' || initstr[0] == 'k')
25 {
26 main_start_gui();
27 #ifdef FEAT_GUI
28--- 1458,1465 ----
29 ++initstr;
30 }
31
32! /* "gvim" starts the GUI. Also accept "Gvim" for MS-Windows. */
33! if (TOLOWER_ASC(initstr[0]) == 'g')
34 {
35 main_start_gui();
36 #ifdef FEAT_GUI
37*** ../vim-7.2.019/src/version.c Thu Sep 18 12:43:21 2008
38--- src/version.c Thu Sep 18 20:54:10 2008
39***************
40*** 678,679 ****
41--- 678,681 ----
42 { /* Add new patch number below this line */
43+ /**/
44+ 20,
45 /**/
46
47--
48hundred-and-one symptoms of being an internet addict:
4990. Instead of calling you to dinner, your spouse sends e-mail.
50
51 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
52/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
53\\\ download, build and distribute -- http://www.A-A-P.org ///
54 \\\ help me help AIDS victims -- http://ICCF-Holland.org ///
This page took 0.132691 seconds and 4 git commands to generate.