Author: lbernardo
Date: Wed Dec 19 22:01:38 2012
New Revision: 1424164
URL: http://svn.apache.org/viewvc?rev=1424164&view=rev
Log:
fixed the fact that -nocs was not being applied
Modified:
xmlgraphics/fop/trunk/src/java/org/apache/fop/cli/CommandLineOptions.java
Modified:
xmlgraphics/fop/trunk/src/java/org/apache/fop/cli/CommandLineOptions.java
URL:
http://svn.apache.org/viewvc/xmlgraphics/fop/trunk/src/java/org/apache/fop/cli/CommandLineOptions.java?rev=1424164&r1=1424163&r2=1424164&view=diff
==============================================================================
--- xmlgraphics/fop/trunk/src/java/org/apache/fop/cli/CommandLineOptions.java
(original)
+++ xmlgraphics/fop/trunk/src/java/org/apache/fop/cli/CommandLineOptions.java
Wed Dec 19 22:01:38 2012
@@ -1057,7 +1057,8 @@ public class CommandLineOptions {
if (!strictValidation) {
fopFactoryBuilder.setStrictFOValidation(strictValidation);
}
- if (useComplexScriptFeatures) {
+ if (!useComplexScriptFeatures) {
+ // note: by default cs is enabled so we need to disable it
fopFactoryBuilder.setComplexScriptFeatures(useComplexScriptFeatures);
}
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]