diff options
author | Nicholas Clark <nick@ccl4.org> | 2012-09-20 10:20:35 +0200 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2012-09-20 15:28:13 +0200 |
commit | a310a8f2bf41061e1bf6feadf7d6758f96b481c5 (patch) | |
tree | daf97abc45b9efc8e99f8a7d408be23c8190aacd /intrpvar.h | |
parent | f6dfc73674dee34ba46c58c97d0c3d0bf0bcc5dc (diff) | |
download | perl-a310a8f2bf41061e1bf6feadf7d6758f96b481c5.tar.gz |
Eliminate the vestigial comment "magical thingies" from intrpvar.h
The original comment "magical thingies" was added to perl.c by commit
8ebc5c0145d2e355 in Jan 1997. It is above code which frees 4 interpreter-
global SVs in perl_destruct.
The comment "magical thingies" was in intrpvar.h since the file was created
by commit 49f531dad558d800 on 29 Nov 1997. At that time, it was followed by
a block of 13 relevant interpreter global variables. However, by commit
d4cce5f1785350c2 (30 Nov 1997) all bar two were now in other places, mostly
in thrdvar.h. With the abolition of PL_formfeed, the comment now annotates
just one "magical" thingy, PL_basetime, which isn't even one of the SVs
freed at the analogous location in perl.c. Hence the comment adds no value.
Diffstat (limited to 'intrpvar.h')
-rw-r--r-- | intrpvar.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/intrpvar.h b/intrpvar.h index 9817bd29dc..41d9dbbbd5 100644 --- a/intrpvar.h +++ b/intrpvar.h @@ -299,7 +299,6 @@ PERLVAR(I, exit_flags, U8) /* was exit() unexpected, etc. */ PERLVAR(I, inplace, char *) PERLVAR(I, e_script, SV *) -/* magical thingies */ PERLVAR(I, basetime, Time_t) /* $^T */ PERLVARI(I, maxsysfd, I32, MAXSYSFD) |