diff options
author | Andy Lester <andy@petdance.com> | 2005-12-07 15:58:05 -0600 |
---|---|---|
committer | Steve Peters <steve@fisharerojo.org> | 2005-12-10 15:14:37 +0000 |
commit | fb8a983643e8a4ec3e57626fb8754442ebe19278 (patch) | |
tree | 40096096235ef541889e8a59c269feec67e4dbaf /pad.c | |
parent | 7119fd33ffc5ef947b59b6096cf5249ee05d4397 (diff) | |
download | perl-fb8a983643e8a4ec3e57626fb8754442ebe19278.tar.gz |
Excluding pad funcs when not debugging
Message-ID: <20051208035805.GA23007@petdance.com>
p4raw-id: //depot/perl@26316
Diffstat (limited to 'pad.c')
-rw-r--r-- | pad.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -862,7 +862,8 @@ S_pad_findlex(pTHX_ const char *name, const CV* cv, U32 seq, int warn, return new_offset; } - + +#ifdef DEBUGGING /* =for apidoc pad_sv @@ -897,7 +898,6 @@ Use the macro PAD_SETSV() rather than calling this function directly. =cut */ -#ifdef DEBUGGING void Perl_pad_setsv(pTHX_ PADOFFSET po, SV* sv) { |