projects
/
p5sagit/p5-mst-13.2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
1630394
)
pp_ne() needs a CORRECT boolean.
Jarkko Hietaniemi [Wed, 28 Mar 2001 15:13:18 +0000 (15:13 +0000)]
p4raw-id: //depot/perl@9405
pp.c
patch
|
blob
|
blame
|
history
diff --git
a/pp.c
b/pp.c
index
f7f89e1
..
fde8473
100644
(file)
--- a/
pp.c
+++ b/
pp.c
@@
-1716,7
+1716,7
@@
PP(pp_ne)
dSP; tryAMAGICbinSET(ne,0);
#ifndef NV_PRESERVES_UV
if (SvROK(TOPs) && SvROK(TOPm1s)) {
- SETs(boolSV(SvRV(TOPs) == SvRV(TOPm1s)));
+ SETs(boolSV(SvRV(TOPs) != SvRV(TOPm1s)));
RETURN;
}
#endif