]> git.pld-linux.org Git - packages/vim.git/blame - 7.1.189
- recognize update_mime_database
[packages/vim.git] / 7.1.189
CommitLineData
d2415672
AG
1To: vim-dev@vim.org
2Subject: Patch 7.1.189
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.1.189 (after 7.1.104)
11Problem: Patch 7.1.104 was incomplete.
12Solution: Also call plain_vgetc() in ask_yesno().
13Files: src/misc1.c
14
15
16*** ../vim-7.1.188/src/misc1.c Wed Jan 2 17:48:24 2008
17--- src/misc1.c Wed Jan 2 17:48:00 2008
18***************
19*** 222,231 ****
20 *s++ = *p++;
21 orig_char_len--;
22 }
23 /* Skip over any additional white space (useful when newindent is less
24 * than old) */
25 while (vim_iswhite(*p))
26! (void)*p++;
27
28 }
29 else
30--- 222,232 ----
31 *s++ = *p++;
32 orig_char_len--;
33 }
34+
35 /* Skip over any additional white space (useful when newindent is less
36 * than old) */
37 while (vim_iswhite(*p))
38! ++p;
39
40 }
41 else
42***************
43*** 3024,3030 ****
44 if (direct)
45 r = get_keystroke();
46 else
47! r = safe_vgetc();
48 if (r == Ctrl_C || r == ESC)
49 r = 'n';
50 msg_putchar(r); /* show what you typed */
51--- 3025,3031 ----
52 if (direct)
53 r = get_keystroke();
54 else
55! r = plain_vgetc();
56 if (r == Ctrl_C || r == ESC)
57 r = 'n';
58 msg_putchar(r); /* show what you typed */
59*** ../vim-7.1.188/src/version.c Wed Jan 2 22:08:43 2008
60--- src/version.c Thu Jan 3 12:40:31 2008
61***************
62*** 668,669 ****
63--- 668,671 ----
64 { /* Add new patch number below this line */
65+ /**/
66+ 189,
67 /**/
68
69--
70Q: How does a UNIX Guru do Sex ?
71A: unzip;strip;touch;finger;mount;fsck;more;yes;umount;sleep
72
73 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
74/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
75\\\ download, build and distribute -- http://www.A-A-P.org ///
76 \\\ help me help AIDS victims -- http://ICCF-Holland.org ///
This page took 0.042275 seconds and 4 git commands to generate.