diff options
author | Olaf Weber <olaf@infovore.xs4all.nl> | 2007-01-20 11:00:43 +0000 |
---|---|---|
committer | Olaf Weber <olaf@infovore.xs4all.nl> | 2007-01-20 11:00:43 +0000 |
commit | 42b0ba58161cb261ecf866b20444cb0f5eee3b9c (patch) | |
tree | b33c6e850af0cb2417e71381d3fe103408b0598e /Build | |
parent | 8182034c5be1d7775d51c7807637cb98bf247da9 (diff) |
setoption(): Fix bug in parsing options attached to their flag.
git-svn-id: svn://tug.org/texlive/trunk@3621 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build')
-rw-r--r-- | Build/source/texk/dvi2tty/dvi2tty.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Build/source/texk/dvi2tty/dvi2tty.c b/Build/source/texk/dvi2tty/dvi2tty.c index 78a26ae632e..bbabbff30b1 100644 --- a/Build/source/texk/dvi2tty/dvi2tty.c +++ b/Build/source/texk/dvi2tty/dvi2tty.c @@ -315,7 +315,7 @@ char *optarg; if ((optch = optarg[j]) == '\0') break; j++; - if ((strchr(OPTWARG, optch) != NULL) && (optarg[j]='\0')) { + if ((strchr(OPTWARG, optch) != NULL) && (optarg[j]=='\0')) { if (--Argc <= 0) usage(noarg); optarg = *++Argv; |