]> git.pld-linux.org Git - packages/vim.git/blame - 6.2.292
- initial import
[packages/vim.git] / 6.2.292
CommitLineData
34eabb99
AG
1To: vim-dev@vim.org
2Subject: Patch 6.2.292
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 6.2.292
11Problem: Motif: When removing GUI arguments from argv[] a "ps -ef" shows
12 the last argument repeated.
13Solution: Set argv[argc] to NULL. (Michael Jarvis)
14Files: src/gui_x11.c
15
16
17*** ../vim-6.2.291/src/gui_x11.c Mon Dec 29 21:21:52 2003
18--- src/gui_x11.c Wed Feb 25 21:55:24 2004
19***************
20*** 1217,1222 ****
21--- 1217,1223 ----
22 * sizeof(char *));
23 }
24 }
25+ argv[*argc] = NULL;
26 }
27 else
28 #ifdef FEAT_SUN_WORKSHOP
29***************
30*** 1227,1232 ****
31--- 1228,1234 ----
32 gui.dofork = FALSE; /* don't fork() when starting GUI */
33 mch_memmove(&argv[arg], &argv[arg + 1],
34 (--*argc - arg) * sizeof(char *));
35+ argv[*argc] = NULL;
36 # ifdef WSDEBUG
37 wsdebug_wait(WT_ENV | WT_WAIT | WT_STOP, "SPRO_GVIM_WAIT", 20);
38 wsdebug_log_init("SPRO_GVIM_DEBUG", "SPRO_GVIM_DLEVEL");
39***************
40*** 1242,1247 ****
41--- 1244,1250 ----
42 netbeansArg = argv[arg];
43 mch_memmove(&argv[arg], &argv[arg + 1],
44 (--*argc - arg) * sizeof(char *));
45+ argv[*argc] = NULL;
46 }
47 else
48 #endif
49*** ../vim-6.2.291/src/version.c Wed Feb 25 13:13:26 2004
50--- src/version.c Thu Feb 26 15:41:42 2004
51***************
52*** 639,640 ****
53--- 639,642 ----
54 { /* Add new patch number below this line */
55+ /**/
56+ 292,
57 /**/
58
59--
60ARTHUR: Right! Knights! Forward!
61 ARTHUR leads a charge toward the castle. Various shots of them battling on,
62 despite being hit by a variety of farm animals.
63 "Monty Python and the Holy Grail" PYTHON (MONTY) PICTURES LTD
64
65 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
66/// Sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
67\\\ Project leader for A-A-P -- http://www.A-A-P.org ///
68 \\\ Buy at Amazon and help AIDS victims -- http://ICCF.nl/click1.html ///
This page took 0.626891 seconds and 4 git commands to generate.