summaryrefslogtreecommitdiff
path: root/pad.c
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2015-04-23 18:10:31 -0600
committerKarl Williamson <khw@cpan.org>2015-04-23 18:39:31 -0600
commit8560fbdd574815f9b1e6690cbac213446515ff2e (patch)
tree1630cee14362a5dfa71dae6910c3fcc2954ca077 /pad.c
parenta31f9aef2d49956a5310036eb86435caf0e2dfb6 (diff)
downloadperl-8560fbdd574815f9b1e6690cbac213446515ff2e.tar.gz
perlapi: Wrap long verbatim lines to 79 columns
Diffstat (limited to 'pad.c')
-rw-r--r--pad.c19
1 files changed, 11 insertions, 8 deletions
diff --git a/pad.c b/pad.c
index 2d3377942a..d8789abebf 100644
--- a/pad.c
+++ b/pad.c
@@ -79,11 +79,14 @@ the variable. The COP_SEQ_RANGE_LOW and _HIGH fields form a range
valid. During compilation, these fields may hold the special value
PERL_PADSEQ_INTRO to indicate various stages:
- COP_SEQ_RANGE_LOW _HIGH
- ----------------- -----
- PERL_PADSEQ_INTRO 0 variable not yet introduced: { my ($x
- valid-seq# PERL_PADSEQ_INTRO variable in scope: { my ($x)
- valid-seq# valid-seq# compilation of scope complete: { my ($x) }
+ COP_SEQ_RANGE_LOW _HIGH
+ ----------------- -----
+ PERL_PADSEQ_INTRO 0 variable not yet introduced:
+ { my ($x
+ valid-seq# PERL_PADSEQ_INTRO variable in scope:
+ { my ($x)
+ valid-seq# valid-seq# compilation of scope complete:
+ { my ($x) }
For typed lexicals PadnameTYPE points at the type stash. For C<our>
lexicals, PadnameOURSTASH points at the stash of the associated global (so
@@ -582,9 +585,9 @@ identifies the type. If I<ourstash> is non-null, it's a lexical reference
to a package variable, and this identifies the package. The following
flags can be OR'ed together:
- padadd_OUR redundantly specifies if it's a package var
- padadd_STATE variable will retain value persistently
- padadd_NO_DUP_CHECK skip check for lexical shadowing
+ padadd_OUR redundantly specifies if it's a package var
+ padadd_STATE variable will retain value persistently
+ padadd_NO_DUP_CHECK skip check for lexical shadowing
=cut
*/