bug fix for munchconfig (turned up by CXX)
Peter Prymmer [Tue, 25 Jul 2000 18:59:16 +0000 (11:59 -0700)]
Message-ID: <Pine.OSF.4.10.10007251805350.294719-100000@aspara.forte.com>

p4raw-id: //depot/perl@6440

vms/munchconfig.c

index 158de3c..82768db 100644 (file)
@@ -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 {