summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/scripts/glossaries
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2012-05-21 23:39:22 +0000
committerKarl Berry <karl@freefriends.org>2012-05-21 23:39:22 +0000
commit18d3ed873290d987fea4820b83615c3f35c44770 (patch)
treee8bcd6aed2fe7e4915136f79f257a8c0abf94215 /Master/texmf-dist/scripts/glossaries
parentdcf30bb52ae0db1fc2f0bef28179723d65e23618 (diff)
glossaries 3.02 (21may12)
git-svn-id: svn://tug.org/texlive/trunk@26547 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/scripts/glossaries')
-rwxr-xr-xMaster/texmf-dist/scripts/glossaries/makeglossaries10
1 files changed, 8 insertions, 2 deletions
diff --git a/Master/texmf-dist/scripts/glossaries/makeglossaries b/Master/texmf-dist/scripts/glossaries/makeglossaries
index df289eb8a39..19a61c9b5d0 100755
--- a/Master/texmf-dist/scripts/glossaries/makeglossaries
+++ b/Master/texmf-dist/scripts/glossaries/makeglossaries
@@ -2,7 +2,7 @@
# File : makeglossaries
# Author : Nicola Talbot
-# Version : 2.03 (2011/12/02)
+# Version : 2.04 (2011/06/21)
# Description: simple Perl script that calls makeindex or xindy.
# Intended for use with "glossaries.sty" (saves having to remember
# all the various switches)
@@ -27,9 +27,11 @@
# glossary-super.sty, glossaries.perl.
# Also makeglossaries and makeglossaries.
-my $version="2.03 (2011-12-02)";
+my $version="2.04 (2012-05-19)";
# History:
+# v2.04 (2012-04-19):
+# * fixed bug in &scan_aux
# v2.03 (2011-04-12):
# * added warning about possibly needing 'nomain' package option
# v2.02 (2011-04-2):
@@ -456,6 +458,10 @@ sub scan_aux{
if (m/\\\@input{(.+)\.aux}/)
{
&scan_aux($1);
+
+ # v2.04 added
+ # (Fix provided by Daniel Grund)
+ next;
}
if (m/\\\@newglossary\s*\{(.*)\}{(.*)}{(.*)}{(.*)}/)