diff options
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 { |