diff options
author | 2019-01-03 03:43:34 +1100 | |
---|---|---|
committer | 2019-01-03 03:43:34 +1100 | |
commit | b841540955f5fc00ef04eb84b7f22645e909d4e3 (patch) | |
tree | ed3674d9e4846a280f3a0cbd9fc18cc287570558 | |
parent | 5e75e186e0d33d9cda7683c6da5a9297d6964321 (diff) |
srcclean: treat *.xslt as XML (nw)
-rw-r--r-- | src/tools/srcclean.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/tools/srcclean.cpp b/src/tools/srcclean.cpp index f42e3bf83a7..431bc00434c 100644 --- a/src/tools/srcclean.cpp +++ b/src/tools/srcclean.cpp @@ -1790,7 +1790,8 @@ bool is_xml_extension(char const *ext) return !core_stricmp(ext, ".hsi") || !core_stricmp(ext, ".lay") || - !core_stricmp(ext, ".xml"); + !core_stricmp(ext, ".xml") || + !core_stricmp(ext, ".xslt"); } } // anonymous namespace |