diff options
author | Karl Berry <karl@freefriends.org> | 2012-12-18 23:30:24 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2012-12-18 23:30:24 +0000 |
commit | fcce22577fd96970b6e25ce53ccad5ebaba7d7c4 (patch) | |
tree | f334c83e12072444aeae9ffd3bbfc654b81bb571 /Build | |
parent | d08cf4b721636fc9b7caa7c59e3a6e3bd316edbe (diff) |
checkcites (18dec12)
git-svn-id: svn://tug.org/texlive/trunk@28572 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build')
-rwxr-xr-x | Build/source/texk/texlive/linked_scripts/checkcites/checkcites.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Build/source/texk/texlive/linked_scripts/checkcites/checkcites.lua b/Build/source/texk/texlive/linked_scripts/checkcites/checkcites.lua index 8a6b83d6550..69d79e172da 100755 --- a/Build/source/texk/texlive/linked_scripts/checkcites/checkcites.lua +++ b/Build/source/texk/texlive/linked_scripts/checkcites/checkcites.lua @@ -22,8 +22,8 @@ -- ****************************************************************** -- version and date, to be updated on each release/commit -VERSION = "1.0h" -DATE = "March 16, 2012" +VERSION = "1.0i" +DATE = "December 18, 2012" -- globals -- warning about \citation{*} @@ -311,7 +311,7 @@ function getDataFromBibFiles(theBibFiles) for currentLine in fileHandler:lines() do -- if a reference is found - for reference in string.gmatch(currentLine, '@%w+{(.+),') do + for reference in string.gmatch(currentLine, '@%w+{%s*(.+),') do -- insert the reference table.insert(theReferences, reference) |