This is a live mirror of the Perl 5 development currently hosted at
https://github.com/perl/perl5
https://perl5.git.perl.org
/
perl5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3802429
)
bug fix for munchconfig (turned up by CXX)
author
Peter Prymmer
<PPrymmer@factset.com>
Tue, 25 Jul 2000 18:59:16 +0000
(11:59 -0700)
committer
Jarkko Hietaniemi
<jhi@iki.fi>
Wed, 26 Jul 2000 04:32:32 +0000
(
04:32
+0000)
Message-ID: <Pine.OSF.4.10.
10007251805350
.294719-100000@aspara.forte.com>
p4raw-id: //depot/perl@6440
vms/munchconfig.c
patch
|
blob
|
blame
|
history
diff --git
a/vms/munchconfig.c
b/vms/munchconfig.c
index
158de3c
..
82768db
100644
(file)
--- 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 {