summaryrefslogtreecommitdiff
path: root/perl.h
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2003-03-08 19:41:25 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2003-03-08 19:41:25 +0000
commit56c380de7ceba5f83801db9385a752c5f1437a79 (patch)
tree3759efde42c85da665a71a3695063aa01d0a9f98 /perl.h
parent5929cfd6f8a0f5b970af4c44b4cbbb1a2847631a (diff)
downloadperl-56c380de7ceba5f83801db9385a752c5f1437a79.tar.gz
Enache Adrian reads comments.
p4raw-id: //depot/perl@18854
Diffstat (limited to 'perl.h')
-rw-r--r--perl.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl.h b/perl.h
index 618da60480..a7b502e5ca 100644
--- a/perl.h
+++ b/perl.h
@@ -4243,7 +4243,7 @@ extern void moncontrol(int);
#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... */