remove unnecessary comments

This commit is contained in:
ljie-PI
2024-10-19 17:40:03 +08:00
parent 952e0fdbdb
commit 9176eabb3b

View File

@@ -303,7 +303,6 @@ function M.escape_special_chars(path)
if path == nil then
return path
end
-- return M.is_windows and path:gsub("%(", "\\("):gsub("%)", "\\)") or path
return M.is_windows and escape_special_char_for_windows(path) or path
end