summaryrefslogtreecommitdiff
path: root/tex/generic
diff options
context:
space:
mode:
authorHans Hagen <pragma@wxs.nl>2013-07-31 20:23:00 +0200
committerHans Hagen <pragma@wxs.nl>2013-07-31 20:23:00 +0200
commitbcad533e9ab26e0b6cf2fe84af11ba012d8dd76c (patch)
tree0027557efa7c8c069b37ff573fd259c73314ee0e /tex/generic
parent0804923254f208f75c4da536fec9f51d85a4dbb4 (diff)
downloadcontext-bcad533e9ab26e0b6cf2fe84af11ba012d8dd76c.tar.gz
beta 2013.07.31 20:23
Diffstat (limited to 'tex/generic')
-rw-r--r--tex/generic/context/luatex/luatex-fonts-merged.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/tex/generic/context/luatex/luatex-fonts-merged.lua b/tex/generic/context/luatex/luatex-fonts-merged.lua
index 5b98b1938..621b9ae0b 100644
--- a/tex/generic/context/luatex/luatex-fonts-merged.lua
+++ b/tex/generic/context/luatex/luatex-fonts-merged.lua
@@ -1,6 +1,6 @@
-- merged file : luatex-fonts-merged.lua
-- parent file : luatex-fonts.lua
--- merge date : 07/24/13 14:11:45
+-- merge date : 07/31/13 20:23:22
do -- begin closure to overcome local limits and interference
@@ -2416,9 +2416,9 @@ function string.booleanstring(str)
end
function string.is_boolean(str,default)
if type(str)=="string" then
- if str=="true" or str=="yes" or str=="on" or str=="t" then
+ if str=="true" or str=="yes" or str=="on" or str=="t" or str=="1" then
return true
- elseif str=="false" or str=="no" or str=="off" or str=="f" then
+ elseif str=="false" or str=="no" or str=="off" or str=="f" or str=="0" then
return false
end
end