]> git.pld-linux.org Git - packages/vim.git/blame - 6.2.262
- removed conflict with 6.2.259
[packages/vim.git] / 6.2.262
CommitLineData
ffd6c6e3
AG
1To: vim-dev@vim.org
2Subject: Patch 6.2.262
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.262
11Problem: 1 CTRL-W w beeps, even though going to the first window is
12 possible. (Charles Campbell)
13Solution: Don't beep.
14Files: src/window.c
15
16
17*** ../vim-6.2.261/src/window.c Wed Feb 4 21:42:30 2004
18--- src/window.c Thu Feb 12 16:01:23 2004
19***************
20*** 222,228 ****
21 /* cursor to previous window with wrap around */
22 case 'W':
23 CHECK_CMDWIN
24! if (lastwin == firstwin) /* just one window */
25 beep_flush();
26 else
27 {
28--- 222,228 ----
29 /* cursor to previous window with wrap around */
30 case 'W':
31 CHECK_CMDWIN
32! if (lastwin == firstwin && Prenum != 1) /* just one window */
33 beep_flush();
34 else
35 {
36*** ../vim-6.2.261/src/version.c Sun Feb 15 13:44:45 2004
37--- src/version.c Sun Feb 15 13:46:41 2004
38***************
39*** 639,640 ****
40--- 639,642 ----
41 { /* Add new patch number below this line */
42+ /**/
43+ 262,
44 /**/
45
46--
47hundred-and-one symptoms of being an internet addict:
48147. You finally give up smoking...because it made the monitor dirty.
49
50 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
51/// Sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
52\\\ Project leader for A-A-P -- http://www.A-A-P.org ///
53 \\\ Help AIDS victims, buy here: http://ICCF-Holland.org/click1.html ///
This page took 0.050704 seconds and 4 git commands to generate.