Revision 6326597d
Von Moritz Bunkus vor etwa 14 Jahren hinzugefügt
SL/Template/LaTeX.pm | ||
---|---|---|
320 | 320 |
$self->{"error"} = "$!"; |
321 | 321 |
return 0; |
322 | 322 |
} |
323 |
binmode IN, ":utf8" if $::locale->is_utf8; |
|
323 | 324 |
my @lines = <IN>; |
324 | 325 |
close(IN); |
325 | 326 |
|
... | ... | |
346 | 347 |
return 0; |
347 | 348 |
} |
348 | 349 |
|
350 |
binmode OUT, ":utf8" if $::locale->is_utf8; |
|
349 | 351 |
print(OUT $new_contents); |
350 | 352 |
|
351 | 353 |
if ($form->{"format"} =~ /postscript/i) { |
Auch abrufbar als: Unified diff
Ein-/Ausgaben in Textdateien (Druckvorlagen) zwischen UTF-8 und internem Encoding wandeln, sofern notwendig