summaryrefslogtreecommitdiff
path: root/pp.c
diff options
context:
space:
mode:
authorFather Chrysostomos <sprout@cpan.org>2014-01-01 05:56:15 -0800
committerFather Chrysostomos <sprout@cpan.org>2014-01-01 08:22:41 -0800
commit6006ebd02a4b62ba7535f6398bbb2d33a9ef46cc (patch)
treec52acbeabff2535b1c3ba8299fad2c175c0430a3 /pp.c
parent5cd5e2d6301836ca9b0f94e9a100e697bd374cd8 (diff)
downloadperl-6006ebd02a4b62ba7535f6398bbb2d33a9ef46cc.tar.gz
pp.c: Improve self-referential comment
pp.c:pp_lc has this: /* Here is where we would do context-sensitive actions. See the * commit message for this comment for why there isn't any */ If I try to look up the commit that added the comment, I get this: commit 06b5486afd6f58eb7fdf8c5c8cdb8520a4c87f40 Author: Karl Williamson <public@khwilliamson.com> Date: Fri Nov 11 10:13:28 2011 -0700 pp.c: White-space only This outdents and reflows comments as a result of the removal of a surrounding block 86510fb15 was the commit that added the comment, whose commit message contains the explanation, so cite that directly.
Diffstat (limited to 'pp.c')
-rw-r--r--pp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pp.c b/pp.c
index cbe2df33d5..471fc358e9 100644
--- a/pp.c
+++ b/pp.c
@@ -4015,7 +4015,7 @@ PP(pp_lc)
cBOOL(IN_LOCALE_RUNTIME), &tainted);
/* Here is where we would do context-sensitive actions. See the
- * commit message for this comment for why there isn't any */
+ * commit message for 86510fb15 for why there isn't any */
if (ulen > u && (SvLEN(dest) < (min += ulen - u))) {