From 98ee6bd75ca9b972ee4907c0fa043a0800794121 Mon Sep 17 00:00:00 2001 From: Karl Berry Date: Wed, 22 Oct 2008 21:26:26 +0000 Subject: do not force all non-true values to false, for the sake of LW35; from Aaron Chen, 17 Oct 2008 01:22:24 git-svn-id: svn://tug.org/texlive/trunk@11027 c570f23f-e606-0410-a88d-b1316a301751 --- Master/texmf/scripts/tetex/updmap.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Master/texmf/scripts') diff --git a/Master/texmf/scripts/tetex/updmap.pl b/Master/texmf/scripts/tetex/updmap.pl index d07a5926452..70f6d46e3b8 100644 --- a/Master/texmf/scripts/tetex/updmap.pl +++ b/Master/texmf/scripts/tetex/updmap.pl @@ -467,7 +467,7 @@ sub cfgval { if ($value =~ m/^(true|yes|t|y|1)$/) { $value = 1; } - else { + elsif ($value =~ m/^(false|no|f|n|0)$/) { $value = 0; } last; -- cgit v1.2.3