]> git.lyx.org Git - lyx.git/blobdiff - src/support/os_unix.cpp
add onoff support for "inset-modify changetype xxx" in include inset
[lyx.git] / src / support / os_unix.cpp
index 32febd978586c21b407b062fad1cd7cb5d951f02..2e6f9ba309c84bc583b6b07ea1cf029f98034004 100644 (file)
@@ -94,14 +94,19 @@ bool path_prefix_is(string & path, string const & pre, path_case how)
        docstring::size_type const p2_len = p2.length();
        docstring::size_type common_len = common_path(p1, p2);
 
-       if (p2[p2_len - 1] == '/')
+       if (p2[p2_len - 1] == '/' && p1_len != p2_len)
                ++common_len;
 
        if (common_len != p2_len)
                return false;
 
-       if (how == CASE_ADJUSTED && !prefixIs(path, pre))
-               path = to_utf8(p2 + p1.substr(common_len, p1_len - common_len));
+       if (how == CASE_ADJUSTED && !prefixIs(path, pre)) {
+               if (p1_len < common_len)
+                       path = to_utf8(p2.substr(0, p1_len));
+               else
+                       path = to_utf8(p2 + p1.substr(common_len,
+                                                       p1_len - common_len));
+       }
 
        return true;
 #else