diff options
author | 2014-03-24 14:58:42 +0000 | |
---|---|---|
committer | 2014-03-24 14:58:42 +0000 | |
commit | 91f110e064cd7c194e59e019b83bb7496c1c84d4 (patch) | |
tree | 3e8e577405dba7e94b43cbf21c22f21aaa5ab949 /gnu/usr.bin/perl/pod/perlhacktut.pod | |
parent | do not call purge_task every 10 secs, it is only needed once at startup and (diff) | |
download | wireguard-openbsd-91f110e064cd7c194e59e019b83bb7496c1c84d4.tar.xz wireguard-openbsd-91f110e064cd7c194e59e019b83bb7496c1c84d4.zip |
Import perl-5.18.2
OK espie@ sthen@ deraadt@
Diffstat (limited to 'gnu/usr.bin/perl/pod/perlhacktut.pod')
-rw-r--r-- | gnu/usr.bin/perl/pod/perlhacktut.pod | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gnu/usr.bin/perl/pod/perlhacktut.pod b/gnu/usr.bin/perl/pod/perlhacktut.pod index 33a9ef23e8d..fc0833649be 100644 --- a/gnu/usr.bin/perl/pod/perlhacktut.pod +++ b/gnu/usr.bin/perl/pod/perlhacktut.pod @@ -53,19 +53,19 @@ test whether we're still at the start of the string. So, here's where C<pat> is set up: STRLEN fromlen; - register char *pat = SvPVx(*++MARK, fromlen); - register char *patend = pat + fromlen; - register I32 len; + char *pat = SvPVx(*++MARK, fromlen); + char *patend = pat + fromlen; + I32 len; I32 datumtype; SV *fromstr; We'll have another string pointer in there: STRLEN fromlen; - register char *pat = SvPVx(*++MARK, fromlen); - register char *patend = pat + fromlen; + char *pat = SvPVx(*++MARK, fromlen); + char *patend = pat + fromlen; + char *patcopy; - register I32 len; + I32 len; I32 datumtype; SV *fromstr; |