diff options
author | Karl Berry <karl@freefriends.org> | 2018-09-25 20:32:13 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2018-09-25 20:32:13 +0000 |
commit | 4abba3d913a7f4857425e6813470cf2918008a33 (patch) | |
tree | 032b4a6d650b95e773d7068d5b68cddede33e503 /Master/texmf-dist | |
parent | 51930f736ae2d13945dadfdfa007c1819baa3c65 (diff) |
context-handlecsv (25sep18)
git-svn-id: svn://tug.org/texlive/trunk@48761 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist')
-rw-r--r-- | Master/texmf-dist/doc/context/third/handlecsv/VERSION | 2 | ||||
-rw-r--r-- | Master/texmf-dist/doc/context/third/handlecsv/handlecsv.epub | bin | 819552 -> 820273 bytes | |||
-rw-r--r-- | Master/texmf-dist/doc/context/third/handlecsv/handlecsv.pdf | bin | 202493 -> 201877 bytes | |||
-rw-r--r-- | Master/texmf-dist/tex/context/third/handlecsv/t-handlecsv.lua | 6 |
4 files changed, 5 insertions, 3 deletions
diff --git a/Master/texmf-dist/doc/context/third/handlecsv/VERSION b/Master/texmf-dist/doc/context/third/handlecsv/VERSION index 5cb361ff89f..a382d85c6d9 100644 --- a/Master/texmf-dist/doc/context/third/handlecsv/VERSION +++ b/Master/texmf-dist/doc/context/third/handlecsv/VERSION @@ -1 +1 @@ -2018.04.07 +2018.09.24 diff --git a/Master/texmf-dist/doc/context/third/handlecsv/handlecsv.epub b/Master/texmf-dist/doc/context/third/handlecsv/handlecsv.epub Binary files differindex 6d6831419d3..09a964a9e7e 100644 --- a/Master/texmf-dist/doc/context/third/handlecsv/handlecsv.epub +++ b/Master/texmf-dist/doc/context/third/handlecsv/handlecsv.epub diff --git a/Master/texmf-dist/doc/context/third/handlecsv/handlecsv.pdf b/Master/texmf-dist/doc/context/third/handlecsv/handlecsv.pdf Binary files differindex 8e2fc8302cc..5d4d8819c79 100644 --- a/Master/texmf-dist/doc/context/third/handlecsv/handlecsv.pdf +++ b/Master/texmf-dist/doc/context/third/handlecsv/handlecsv.pdf diff --git a/Master/texmf-dist/tex/context/third/handlecsv/t-handlecsv.lua b/Master/texmf-dist/tex/context/third/handlecsv/t-handlecsv.lua index 9d6e265d2e4..c34dc26d975 100644 --- a/Master/texmf-dist/tex/context/third/handlecsv/t-handlecsv.lua +++ b/Master/texmf-dist/tex/context/third/handlecsv/t-handlecsv.lua @@ -1,6 +1,6 @@ -- %D \module -- %D [ file=t-handlecsv.lua, --- %D version=2018.02.26, +-- %D version=2018.09.24, -- %D title=HandleCSV module, -- %D subtitle=CSV file handling, -- %D author=Jaroslav Hajtmar, @@ -796,7 +796,9 @@ end function thirddata.handlecsv.linepointer() local csvfile=thirddata.handlecsv.getcurrentcsvfilename() - return thirddata.handlecsv.gCurrentLinePointer[csvfile] + -- return thirddata.handlecsv.gCurrentLinePointer[csvfile] -- cause problem with decimal point for higher versions of Lua + -- return math.tointeger(thirddata.handlecsv.gCurrentLinePointer[csvfile]) -- cause incompatibility for lower version of Lua + return math.floor(tonumber(thirddata.handlecsv.gCurrentLinePointer[csvfile])) -- compatible with lower and higher versions of Lua end |