diff options
author | Peter Prymmer <PPrymmer@factset.com> | 2000-07-25 11:59:16 -0700 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2000-07-26 04:32:32 +0000 |
commit | 154545c719744e0c72089d7eedb40eeb83bbbcc7 (patch) | |
tree | 6f4c192d96053defe02306a8e40a962bb04022a9 /vms | |
parent | 3802429d267c8d589218258636c61462cb33dd22 (diff) | |
download | perl-154545c719744e0c72089d7eedb40eeb83bbbcc7.tar.gz |
bug fix for munchconfig (turned up by CXX)
Message-ID: <Pine.OSF.4.10.10007251805350.294719-100000@aspara.forte.com>
p4raw-id: //depot/perl@6440
Diffstat (limited to 'vms')
-rw-r--r-- | vms/munchconfig.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/vms/munchconfig.c b/vms/munchconfig.c index 158de3caf5..82768db12c 100644 --- a/vms/munchconfig.c +++ b/vms/munchconfig.c @@ -345,8 +345,7 @@ tilde_sub(char LineBuffer[], Translate TildeSub[], int TildeSubCount) } else { /* 'Kay, not a tilde. Is it a word character? */ - if (isalnum(LineBuffer[TildeLoop]) || (LineBuffer[TildeLoop] = - '-') || + if (isalnum(LineBuffer[TildeLoop]) || (LineBuffer[TildeLoop] == '-')) { TempTilde[TildeBufferLength++] = LineBuffer[TildeLoop]; } else { |