]> granicus.if.org Git - vim/commitdiff
updated for version 7.3.210 v7.3.210
authorBram Moolenaar <Bram@vim.org>
Sun, 12 Jun 2011 18:42:22 +0000 (20:42 +0200)
committerBram Moolenaar <Bram@vim.org>
Sun, 12 Jun 2011 18:42:22 +0000 (20:42 +0200)
Problem:    Can't always find the file when using cscope.
Solution:   Add the 'cscoperelative' option. (Raghavendra D Prabhu)

runtime/doc/if_cscop.txt
runtime/doc/options.txt
src/if_cscope.c
src/version.c

index 91dd4c64e64b65bebc2e83a67343a6508b92e2f0..f3f1a49702ccdf71928ff9d91e27a65fdbed3606 100644 (file)
@@ -270,6 +270,15 @@ setting 'cst', you will always search your cscope databases as well as your
 tag files.  The default is off.  Examples: >
        :set cst
        :set nocst
+<
+                                                       *cscoperelative* *csre*
+If 'cscoperelative' set, then in absence of a prefix given to cscope (prefx
+is the argument to -P option of cscope), basename of cscope.out location
+(usually the project root directory) will be used as the prefix to construt
+absolute path.The default is off. Note: This option is only effective when
+cscope (cscopeprg) is initialized without a prefix path (-P). Examples: >
+       :set csre
+       :set nocsre
 <
                                                        *cscopetagorder* *csto*
 The value of 'csto' determines the order in which |:cstag| performs a search.
index a5f614800de1add1260e9206ac0aff46af37b573..5759760a1cbd81b8a40199b7644e20395dad5dda 100644 (file)
@@ -2209,6 +2209,16 @@ A jump table for the options with a short description can be found at |Q_op|.
        Specifies whether to use quickfix window to show cscope results.
        See |cscopequickfix|.
 
+                                               *'cscoperelative'* *'csre'*
+'cscoperelative' 'csre' boolean (default off)
+                       global
+                       {not available when compiled without the |+cscope|
+                       feature}
+                       {not in Vi}
+       In the absence of a prefix (-P) for cscope. setting this option enables
+       to use the basename of cscope.out path as the prefix.
+       See |cscoperelative|.
+
                                *'cscopetag'* *'cst'* *'nocscopetag'* *'nocst'*
 'cscopetag' 'cst'      boolean (default off)
                        global
index a966226848e071dd6bc848a4142236fc4008d509..f9e318dde1444fa79aa8c34b0ca5bd3ea0a5520b 100644 (file)
@@ -2471,42 +2471,61 @@ cs_reset(eap)
  */
     static char *
 cs_resolve_file(i, name)
-    int i;
+    int  i;
     char *name;
 {
-    char *fullname;
-    int len;
+    char       *fullname;
+    int                len;
+    char_u     *csdir = NULL;
 
     /*
-     * ppath is freed when we destroy the cscope connection.
-     * fullname is freed after cs_make_vim_style_matches, after it's been
-     * copied into the tag buffer used by vim
+     * Ppath is freed when we destroy the cscope connection.
+     * Fullname is freed after cs_make_vim_style_matches, after it's been
+     * copied into the tag buffer used by Vim.
      */
     len = (int)(strlen(name) + 2);
     if (csinfo[i].ppath != NULL)
        len += (int)strlen(csinfo[i].ppath);
+    else if (p_csre && csinfo[i].fname != NULL)
+    {
+       /* If 'cscoperelative' is set and ppath is not set, use cscope.out
+        * path in path resolution. */
+       csdir = alloc(MAXPATHL);
+       if (csdir != NULL)
+       {
+           vim_strncpy(csdir, (char_u *)csinfo[i].fname,
+                   gettail((char_u *)csinfo[i].fname) - 1 - (char_u *)csinfo[i].fname);
+           len += (int)STRLEN(csdir);
+       }
+    }
 
     if ((fullname = (char *)alloc(len)) == NULL)
        return NULL;
 
-    /*
-     * note/example: this won't work if the cscope output already starts
+    /* Note/example: this won't work if the cscope output already starts
      * "../.." and the prefix path is also "../..".  if something like this
-     * happens, you are screwed up and need to fix how you're using cscope.
-     */
-    if (csinfo[i].ppath != NULL &&
-       (strncmp(name, csinfo[i].ppath, strlen(csinfo[i].ppath)) != 0) &&
-       (name[0] != '/')
+     * happens, you are screwed up and need to fix how you're using cscope. */
+    if (csinfo[i].ppath != NULL
+           && (strncmp(name, csinfo[i].ppath, strlen(csinfo[i].ppath)) != 0)
+           && (name[0] != '/')
 #ifdef WIN32
-       && name[0] != '\\' && name[1] != ':'
+           && name[0] != '\\' && name[1] != ':'
 #endif
-       )
+       )
        (void)sprintf(fullname, "%s/%s", csinfo[i].ppath, name);
+    else if (csdir != NULL && csinfo[i].fname != NULL && STRLEN(csdir) > 0)
+    {
+       /* Check for csdir to be non empty to avoid empty path concatenated to
+        * cscope output. TODO: avoid the unnecessary alloc/free of fullname. */
+       vim_free(fullname);
+       fullname = concat_fnames(csdir, (char_u *)name, TRUE);
+    }
     else
        (void)sprintf(fullname, "%s", name);
 
+    vim_free(csdir);
     return fullname;
-} /* cs_resolve_file */
+}
 
 
 /*
index 93bfb5511a0061f3904ddbd5636b8edea838533f..1033b74810b1ad6b72fd4c3c85d999045164c175 100644 (file)
@@ -709,6 +709,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    210,
 /**/
     209,
 /**/