]> git.pld-linux.org Git - packages/vim.git/blob - 6.3.009
- typo
[packages/vim.git] / 6.3.009
1 To: vim-dev@vim.org
2 Subject: Patch 6.3.009
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 6.3.009 (after 6.3.006)
11 Problem:    ":breakadd file /path/foo.vim" does not match when a symbolic link
12             is involved.  (Servatius Brandt)
13 Solution:   Do expand the pattern when it does not start with "*".
14 Files:      runtime/doc/repeat.txt, src/ex_cmds2.c
15
16
17 *** ../vim-6.3.008/runtime/doc/repeat.txt       Wed Jun  9 14:56:29 2004
18 --- runtime/doc/repeat.txt      Tue Jun 22 15:01:39 2004
19 ***************
20 *** 1,4 ****
21 ! *repeat.txt*    For Vim version 6.3.  Last change: 2004 Apr 02
22   
23   
24                   VIM REFERENCE MANUAL    by Bram Moolenaar
25 --- 1,4 ----
26 ! *repeat.txt*    For Vim version 6.3.  Last change: 2004 Jun 22
27   
28   
29                   VIM REFERENCE MANUAL    by Bram Moolenaar
30 ***************
31 *** 476,488 ****
32   of characters.  'ignorecase' is not used, but "\c" can be used in the pattern
33   to ignore case |/\c|.  Don't include the () for the function name!
34   
35 ! The match for sourced scripts is done against the full file name.  Examples: >
36 !       breakadd file explorer
37 ! won't match, the path is missing. >
38         breakadd file *explorer.vim
39 ! matches ".../plugin/explorer.vim" and ".../plugin/iexplorer.vim". >
40         breakadd file */explorer.vim
41 ! matches ".../plugin/explorer.vim" only.
42   
43   The match for functions is done against the name as it's shown in the output
44   of ":function".  For local functions this means that something like "<SNR>99_"
45 --- 476,489 ----
46   of characters.  'ignorecase' is not used, but "\c" can be used in the pattern
47   to ignore case |/\c|.  Don't include the () for the function name!
48   
49 ! The match for sourced scripts is done against the full file name.  If no path
50 ! is specified the current directory is used.  Examples: >
51 !       breakadd file explorer.vim
52 ! matches "explorer.vim" in the current directory. >
53         breakadd file *explorer.vim
54 ! matches ".../plugin/explorer.vim", ".../plugin/iexplorer.vim", etc. >
55         breakadd file */explorer.vim
56 ! matches ".../plugin/explorer.vim" and "explorer.vim" in any other directory.
57   
58   The match for functions is done against the name as it's shown in the output
59   of ":function".  For local functions this means that something like "<SNR>99_"
60 *** ../vim-6.3.008/src/ex_cmds2.c       Wed Jun 16 12:34:33 2004
61 --- src/ex_cmds2.c      Tue Jun 22 15:05:07 2004
62 ***************
63 *** 431,437 ****
64         vim_free(q);
65         if (p == NULL)
66             return FAIL;
67 !       bp->dbg_name = p;
68   #ifdef MACOS_CLASSIC
69         if (bp->dbg_name != NULL)
70             slash_n_colon_adjust(bp->dbg_name);
71 --- 431,443 ----
72         vim_free(q);
73         if (p == NULL)
74             return FAIL;
75 !       if (*p != '*')
76 !       {
77 !           bp->dbg_name = fix_fname(p);
78 !           vim_free(p);
79 !       }
80 !       else
81 !           bp->dbg_name = p;
82   #ifdef MACOS_CLASSIC
83         if (bp->dbg_name != NULL)
84             slash_n_colon_adjust(bp->dbg_name);
85 *** ../vim-6.3.008/src/version.c        Sun Jun 27 17:25:17 2004
86 --- src/version.c       Mon Jun 28 19:36:28 2004
87 ***************
88 *** 643,644 ****
89 --- 643,646 ----
90   {   /* Add new patch number below this line */
91 + /**/
92 +     9,
93   /**/
94
95 -- 
96     [clop clop]
97 MORTICIAN:  Who's that then?
98 CUSTOMER:   I don't know.
99 MORTICIAN:  Must be a king.
100 CUSTOMER:   Why?
101 MORTICIAN:  He hasn't got shit all over him.
102                                   The Quest for the Holy Grail (Monty Python)
103
104  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
105 ///        Sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
106 \\\              Project leader for A-A-P -- http://www.A-A-P.org        ///
107  \\\  Buy at Amazon and help AIDS victims -- http://ICCF.nl/click1.html ///
This page took 0.033056 seconds and 3 git commands to generate.