Change 18854 by [EMAIL PROTECTED] on 2003/03/08 19:41:25
Enache Adrian reads comments.
Affected files ...
... //depot/perl/perl.h#496 edit
Differences ...
==== //depot/perl/perl.h#496 (text) ====
Index: perl/perl.h
--- perl/perl.h#495~18828~ Tue Mar 4 12:49:59 2003
+++ perl/perl.h Sat Mar 8 11:41:25 2003
@@ -4243,7 +4243,7 @@
#endif
/* Use instead of abs() since abs() forces its argument to be an int,
- * but also beware since evaluates its argument thrice. */
+ * but also beware since this evaluates its argument twice, so no x++. */
#define PERL_ABS(x) ((x) < 0 ? -(x) : (x))
/* and finally... */
End of Patch.