Skip to content

Commit

Permalink
Make \write -1 also respect verbosity
Browse files Browse the repository at this point in the history
  • Loading branch information
brucemiller committed Aug 23, 2019
1 parent 389dabd commit 2db9b94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/LaTeXML/Package/TeX.pool.ltxml
Original file line number Diff line number Diff line change
Expand Up @@ -2261,7 +2261,7 @@ DefPrimitive('\write Number {}', sub {
my $handle = $filename . '_contents';
my $contents = LookupValue($handle);
AssignValue($handle => $contents . UnTeX(Expand($tokens)) . "\n", 'global'); }
else {
elsif (LookupValue('VERBOSITY') > -1) {
print STDERR UnTeX(Expand($tokens)) . "\n"; }
return; });

Expand Down

0 comments on commit 2db9b94

Please sign in to comment.