summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/luatex
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2011-12-11 22:32:20 +0000
committerKarl Berry <karl@freefriends.org>2011-12-11 22:32:20 +0000
commit2107db0ff048b6acf8de6170f07299202442b4ce (patch)
tree4a32b2ffa2fb8cac648ba0089fc8672be89ce4d9 /Master/texmf-dist/doc/luatex
parent3cc0c51eddc31f37b82f651016191bf3575f3aac (diff)
luamplib 1.09 (11dec11)
git-svn-id: svn://tug.org/texlive/trunk@24823 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/luatex')
-rw-r--r--Master/texmf-dist/doc/luatex/luamplib/NEWS3
-rw-r--r--Master/texmf-dist/doc/luatex/luamplib/luamplib.pdfbin303820 -> 303193 bytes
-rw-r--r--Master/texmf-dist/doc/luatex/luamplib/test-luamplib-latex.tex7
-rw-r--r--Master/texmf-dist/doc/luatex/luamplib/test-luamplib-plain.tex20
4 files changed, 25 insertions, 5 deletions
diff --git a/Master/texmf-dist/doc/luatex/luamplib/NEWS b/Master/texmf-dist/doc/luatex/luamplib/NEWS
index 3e532ab17e3..e8909848e7b 100644
--- a/Master/texmf-dist/doc/luatex/luamplib/NEWS
+++ b/Master/texmf-dist/doc/luatex/luamplib/NEWS
@@ -1,5 +1,8 @@
History of the luamplib package
+2011/12/09 1.09
+ * Fix bug reported by Paul Vojta: spurious spaces.
+
2011/06/23 1.08
* Fix bug reported by Rolf Dieterich: <, >, TAB anywhere in a luacode
environment caused errors. The character ` was affected too.
diff --git a/Master/texmf-dist/doc/luatex/luamplib/luamplib.pdf b/Master/texmf-dist/doc/luatex/luamplib/luamplib.pdf
index 4e450c54cd7..24a36479bf0 100644
--- a/Master/texmf-dist/doc/luatex/luamplib/luamplib.pdf
+++ b/Master/texmf-dist/doc/luatex/luamplib/luamplib.pdf
Binary files differ
diff --git a/Master/texmf-dist/doc/luatex/luamplib/test-luamplib-latex.tex b/Master/texmf-dist/doc/luatex/luamplib/test-luamplib-latex.tex
index 8438348d862..7ae0e97c0f8 100644
--- a/Master/texmf-dist/doc/luatex/luamplib/test-luamplib-latex.tex
+++ b/Master/texmf-dist/doc/luatex/luamplib/test-luamplib-latex.tex
@@ -1,6 +1,8 @@
\documentclass{article}
\usepackage{luamplib}
\begin{document}
+\tracingcommands1
+A%
\begin{mplibcode}
%% test all printable ascii chars in comments
%% ( 2 < F P Z d n x
@@ -13,8 +15,9 @@
%% % / 9 C M W a k u DEL
%% & 0 : D N X b l v
%% ´ 1 ; E O Y c m w
-beginfig(1);
+beginfig(1);
fill fullcircle scaled 20; %% actual <tab> to make sure it works
-endfig;
+endfig;
\end{mplibcode}
+B\par
\end{document}
diff --git a/Master/texmf-dist/doc/luatex/luamplib/test-luamplib-plain.tex b/Master/texmf-dist/doc/luatex/luamplib/test-luamplib-plain.tex
index fb45fb058f0..08a4f8c16b6 100644
--- a/Master/texmf-dist/doc/luatex/luamplib/test-luamplib-plain.tex
+++ b/Master/texmf-dist/doc/luatex/luamplib/test-luamplib-plain.tex
@@ -1,7 +1,21 @@
\input luamplib.sty
+\tracingcommands1
+A%
\mplibcode
-beginfig(1);
- fill fullcircle scaled 20;
-endfig;
+%% test all printable ascii chars in comments
+%% ( 2 < F P Z d n x
+%% ) 3 = G Q [ e o y
+%% * 4 > H R \ f p z
+%% ! + 5 ? I S ] g q {
+%% " , 6 @ J T ^ h r |
+%% # - 7 A K U _ i s }
+%% $ . 8 B L V ` j t ~
+%% % / 9 C M W a k u DEL
+%% & 0 : D N X b l v
+%% ´ 1 ; E O Y c m w
+beginfig(1);
+ fill fullcircle scaled 20;
+endfig;
\endmplibcode
+B\par
\bye