Github user kinow commented on a diff in the pull request:
https://github.com/apache/jena/pull/410#discussion_r184821458
--- Diff: jena-cmds/src/main/java/riotcmd/CmdLangParse.java ---
@@ -218,8 +218,14 @@ public ParseRecord parseFile(String filename) {
RDFParserBuilder builder = RDFParser.create();
if ( baseURI != null )
builder.base(baseURI);
- Lang lang = selectLang(null, null, RDFLanguages.NQUADS) ;
- builder.lang(lang);
+ if ( modLangParse.getLang() != null )
+ // Always use the command line specified synatx.
--- End diff --
s/synatx/syntax
---