Przeglądaj źródła

no need to do lowercasing here, since we're getting real (proper-cased) path anyway

Dan Korostelev 9 lat temu
rodzic
commit
fccee6eb08
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      src/main.ml

+ 1 - 1
src/main.ml

@@ -377,7 +377,7 @@ let lookup_classes com spath =
 		| [] -> []
 		| cp :: l ->
 			let cp = (if cp = "" then "./" else cp) in
-			let c = normalize_path (get_real_path (Common.unique_full_path cp)) in
+			let c = normalize_path (get_real_path (Common.get_full_path cp)) in
 			let clen = String.length c in
 			if clen < String.length spath && String.sub spath 0 clen = c then begin
 				let path = String.sub spath clen (String.length spath - clen) in