summaryrefslogtreecommitdiff
path: root/support
diff options
context:
space:
mode:
authorNorbert Preining <norbert@preining.info>2021-04-10 03:01:32 +0000
committerNorbert Preining <norbert@preining.info>2021-04-10 03:01:32 +0000
commit5960076e4c9c15e2a052cf015dd697a65db3150d (patch)
treec146e929cbd0ac73adbdd2ca10c6fe02bbe0f7c0 /support
parent8ccafc1be8d24ff0c4126d40847afbedab7fc7fb (diff)
CTAN sync 202104100301
Diffstat (limited to 'support')
-rwxr-xr-xsupport/de-macro/de-macro4
1 files changed, 3 insertions, 1 deletions
diff --git a/support/de-macro/de-macro b/support/de-macro/de-macro
index c5795fe891..30dfc75e45 100755
--- a/support/de-macro/de-macro
+++ b/support/de-macro/de-macro
@@ -6,6 +6,8 @@ Licensed under the Academic Free Licence version 2.1
DE-MACRO
+Version 1.4.1 - A small typo corrected.
+
Version 1.4 - Luca Citi made it python2.7 and python3 compatible.
Peter Gacs improved the parsing of \input{<filename>},
and made @ a letter in the style files.
@@ -415,7 +417,7 @@ class Char_stream(Stream):
including the % and all empty space after it.
"""
comment = ""
- while self.uplegal() and "\n" != self .item:
+ while self.uplegal() and "\n" != self.item:
comment += self.item
self.next()
while self.uplegal() and blank_re.match(self.item):