summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/scripts/checkcites
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2012-12-18 23:30:24 +0000
committerKarl Berry <karl@freefriends.org>2012-12-18 23:30:24 +0000
commitfcce22577fd96970b6e25ce53ccad5ebaba7d7c4 (patch)
treef334c83e12072444aeae9ffd3bbfc654b81bb571 /Master/texmf-dist/scripts/checkcites
parentd08cf4b721636fc9b7caa7c59e3a6e3bd316edbe (diff)
checkcites (18dec12)
git-svn-id: svn://tug.org/texlive/trunk@28572 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/scripts/checkcites')
-rwxr-xr-xMaster/texmf-dist/scripts/checkcites/checkcites.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/Master/texmf-dist/scripts/checkcites/checkcites.lua b/Master/texmf-dist/scripts/checkcites/checkcites.lua
index 8a6b83d6550..69d79e172da 100755
--- a/Master/texmf-dist/scripts/checkcites/checkcites.lua
+++ b/Master/texmf-dist/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)