diff options
author | Norbert Preining <preining@logic.at> | 2008-07-22 08:16:10 +0000 |
---|---|---|
committer | Norbert Preining <preining@logic.at> | 2008-07-22 08:16:10 +0000 |
commit | c9fd26c64a845283f252c5a31eaa087569b770fb (patch) | |
tree | 5499461cf1ab9c5f1489cef01eacb59b42a57119 /Master/texmf | |
parent | 00797a54f71ee1c0f412367a343d56815ec2deda (diff) |
tlpdb.tlu: fix wrong pattern for catalogue
git-svn-id: svn://tug.org/texlive/trunk@9698 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf')
-rw-r--r-- | Master/texmf/scripts/texlive/lua/texlive/tlpdb.tlu | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Master/texmf/scripts/texlive/lua/texlive/tlpdb.tlu b/Master/texmf/scripts/texlive/lua/texlive/tlpdb.tlu index d6dd1901f63..39502a4007d 100644 --- a/Master/texmf/scripts/texlive/lua/texlive/tlpdb.tlu +++ b/Master/texmf/scripts/texlive/lua/texlive/tlpdb.tlu @@ -92,9 +92,9 @@ function read_tlpdb(root) tlpobj.shortdesc = rest elseif first == "catalogue" then tlpobj.catalogue = rest - elseif string.match(first,'^catalogue-') then + elseif string.match(first,'^catalogue%-') then --local data = string.match(first,'^catalogue-(.*)$') - local cdata = string.gsub(first,'^catalogue-', '') + local cdata = string.gsub(first,'^catalogue%-', '') --print("DEBUG: cdata = "..cdata..", first = "..first) if not(tlpobj.cataloguedata) then tlpobj.cataloguedata = {} |