summaryrefslogtreecommitdiff
path: root/universal.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 /universal.c
parenta31f9aef2d49956a5310036eb86435caf0e2dfb6 (diff)
downloadperl-8560fbdd574815f9b1e6690cbac213446515ff2e.tar.gz
perlapi: Wrap long verbatim lines to 79 columns
Diffstat (limited to 'universal.c')
-rw-r--r--universal.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/universal.c b/universal.c
index 2e446dd6d9..4b650c5e9e 100644
--- a/universal.c
+++ b/universal.c
@@ -294,7 +294,8 @@ A specialised variant of C<croak()> for emitting the usage message for xsubs
works out the package name and subroutine name from C<cv>, and then calls
C<croak()>. Hence if C<cv> is C<&ouch::awk>, it would call C<croak> as:
- Perl_croak(aTHX_ "Usage: %"SVf"::%"SVf"(%s)", "ouch" "awk", "eee_yow");
+ Perl_croak(aTHX_ "Usage: %"SVf"::%"SVf"(%s)", "ouch" "awk",
+ "eee_yow");
=cut
*/