diff options
author | Philipp Gesang <phg42.2a@gmail.com> | 2013-11-29 14:40:22 +0100 |
---|---|---|
committer | Philipp Gesang <phg42.2a@gmail.com> | 2013-11-29 14:40:22 +0100 |
commit | 1c3cc9603566ac83f6c79eddd39ca61a2d70a7ad (patch) | |
tree | 0151fc39cef17aa9a9fbabca05140770db15b521 | |
parent | 89fe3ee651a41181c9912a37822318ce2024f6f5 (diff) | |
download | luatexbase-1c3cc9603566ac83f6c79eddd39ca61a2d70a7ad.tar.gz |
[attr] fix error message
-rw-r--r-- | luatexbase-attr.dtx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/luatexbase-attr.dtx b/luatexbase-attr.dtx index 5b7288f..4d2cf2a 100644 --- a/luatexbase-attr.dtx +++ b/luatexbase-attr.dtx @@ -391,9 +391,9 @@ local unset_attribute local luatex_sty_counter = 'LuT@AllocAttribute' if tex.count[luatex_sty_counter] then if tex.count[luatex_sty_counter] > -1 then - error("luatexbase error: attribute 0 has already been set by \newattribute" - .."macro from luatex.sty, not belonging to this package, this makes" - .."luaotfload unusable. Please report to the maintainer of luatex.sty") + error("luatexbase error: Attribute 0 has already been set by the \\newattribute " + .."macro from luatex.sty, not belonging to this package. This makes " + .."luaotfload unusable. Please report to the maintainer of luatex.sty.") else tex.count[luatex_sty_counter] = 0 end |