diff options
author | Karl Berry <karl@freefriends.org> | 2023-04-02 21:26:15 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2023-04-02 21:26:15 +0000 |
commit | ad0a98ce24ee4a9a1664bbf5d04ed68668947414 (patch) | |
tree | 9aa08053d201b062858d503a79bb42e451139770 /Master/texmf-dist/scripts | |
parent | 770dde269c1a5fa758b61f2c7f812417d84c9677 (diff) |
de-macro (2apr23)
git-svn-id: svn://tug.org/texlive/trunk@66746 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/scripts')
-rwxr-xr-x | Master/texmf-dist/scripts/de-macro/de-macro | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Master/texmf-dist/scripts/de-macro/de-macro b/Master/texmf-dist/scripts/de-macro/de-macro index c5795fe891f..30dfc75e45c 100755 --- a/Master/texmf-dist/scripts/de-macro/de-macro +++ b/Master/texmf-dist/scripts/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): |