summaryrefslogtreecommitdiff
path: root/Build/source/texk/web2c/lib/texmfmp.c
diff options
context:
space:
mode:
authorJonathan Kew <jfkthame@googlemail.com>2009-09-05 17:28:24 +0000
committerJonathan Kew <jfkthame@googlemail.com>2009-09-05 17:28:24 +0000
commit8e4bbaa766119b7c504f224ea7d2c706e0ca3bb4 (patch)
tree27fcf4fd8067f098f8a3a6778a29c16fafc04843 /Build/source/texk/web2c/lib/texmfmp.c
parent26118032b3b45abfcd866a97161d5a70385db0be (diff)
xetex 0.9995.2, trying to fix filename-quoting bug
git-svn-id: svn://tug.org/texlive/trunk@15135 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/web2c/lib/texmfmp.c')
-rw-r--r--Build/source/texk/web2c/lib/texmfmp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Build/source/texk/web2c/lib/texmfmp.c b/Build/source/texk/web2c/lib/texmfmp.c
index 7e2e6c73abe..e4b63c3090b 100644
--- a/Build/source/texk/web2c/lib/texmfmp.c
+++ b/Build/source/texk/web2c/lib/texmfmp.c
@@ -1178,7 +1178,7 @@ string
normalize_quotes (const_string name, const_string mesg)
{
int quote_char = 0;
- boolean must_quote = (strchr(name, ' ') != NULL);
+ boolean must_quote = false;
int len = strlen(name);
/* Leave room for quotes and NUL. */
string ret;