]> git.pld-linux.org Git - packages/vim.git/blob - 6.2.155
- fix for current libselinux
[packages/vim.git] / 6.2.155
1 To: vim-dev@vim.org
2 Subject: Patch 6.2.155
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.2.155
11 Problem:    Win32: Using ":tjump www" in a help file gives two results.
12             (Dave Roberts)
13 Solution:   Ignore differences between slashes and backslashes when checking
14             for identical tag matches.
15 Files:      src/tag.c
16
17
18 *** ../vim-6.2.154/src/tag.c    Sun Oct 12 16:52:45 2003
19 --- src/tag.c   Mon Dec 15 20:36:00 2003
20 ***************
21 *** 1861,1866 ****
22 --- 1861,1871 ----
23                         {
24                             p[0] = mtt;
25                             STRCPY(p + 1, tag_fname);
26 + #ifdef BACKSLASH_IN_FILENAME
27 +                           /* Ignore differences in slashes, avoid adding
28 +                            * both path/file and path\file. */
29 +                           slash_adjust(p + 1);
30 + #endif
31                             s = p + 1 + STRLEN(tag_fname) + 1;
32   #ifdef FEAT_EMACS_TAGS
33                             if (is_etag)
34 *** ../vim-6.2.154/src/version.c        Wed Nov 12 20:56:23 2003
35 --- src/version.c       Mon Dec 29 19:47:28 2003
36 ***************
37 *** 639,640 ****
38 --- 639,642 ----
39   {   /* Add new patch number below this line */
40 + /**/
41 +     155,
42   /**/
43
44 -- 
45 I AM THANKFUL...
46 ...for the mess to clean after a party because it means I have
47 been surrounded by friends.
48
49  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
50 ///          Creator of Vim - Vi IMproved -- http://www.Vim.org          \\\
51 \\\              Project leader for A-A-P -- http://www.A-A-P.org        ///
52  \\\  Help AIDS victims, buy here: http://ICCF-Holland.org/click1.html  ///
This page took 0.053675 seconds and 3 git commands to generate.