]> git.pld-linux.org Git - packages/vim.git/blob - 7.2.020
- new
[packages/vim.git] / 7.2.020
1 To: vim-dev@vim.org
2 Subject: Patch 7.2.020
3 Fcc: outbox
4 From: Bram Moolenaar <Bram@moolenaar.net>
5 Mime-Version: 1.0
6 Content-Type: text/plain; charset=ISO-8859-1
7 Content-Transfer-Encoding: 8bit
8 ------------
9
10 Patch 7.2.020
11 Problem:    Starting the GUI when the executable starts with 'k', but the KDE
12             version no longer exists.
13 Solution:   Don't have "kvim" start the GUI.
14 Files:      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 -- 
48 hundred-and-one symptoms of being an internet addict:
49 90. 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.030653 seconds and 3 git commands to generate.