summaryrefslogtreecommitdiff
path: root/pod/perlembed.pod
diff options
context:
space:
mode:
authorRafael Garcia-Suarez <rgarciasuarez@gmail.com>2003-12-13 18:41:51 +0000
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>2003-12-13 18:41:51 +0000
commitd3f3bf9f976e4d85e9ba3c08b7f72ac145bee586 (patch)
tree373f914b1ab363c8dfa3adb012c4441f9cd05566 /pod/perlembed.pod
parent96adfaa17d0bbefeecaa62fb1512a5baab973396 (diff)
downloadperl-d3f3bf9f976e4d85e9ba3c08b7f72ac145bee586.tar.gz
Reformat a long line in perlembed.pod (bug #24623).
p4raw-id: //depot/perl@21897
Diffstat (limited to 'pod/perlembed.pod')
-rw-r--r--pod/perlembed.pod11
1 files changed, 10 insertions, 1 deletions
diff --git a/pod/perlembed.pod b/pod/perlembed.pod
index 05feccd1bc..2a31500237 100644
--- a/pod/perlembed.pod
+++ b/pod/perlembed.pod
@@ -506,7 +506,16 @@ been wrapped here):
PL_exit_flags |= PERL_EXIT_DESTRUCT_END;
text = NEWSV(1099,0);
- sv_setpv(text, "When he is at a convenience store and the bill comes to some amount like 76 cents, Maynard is aware that there is something he *should* do, something that will enable him to get back a quarter, but he has no idea *what*. He fumbles through his red squeezey changepurse and gives the boy three extra pennies with his dollar, hoping that he might luck into the correct amount. The boy gives him back two of his own pennies and then the big shiny quarter that is his prize. -RICHH");
+ sv_setpv(text, "When he is at a convenience store and the "
+ "bill comes to some amount like 76 cents, Maynard is "
+ "aware that there is something he *should* do, something "
+ "that will enable him to get back a quarter, but he has "
+ "no idea *what*. He fumbles through his red squeezey "
+ "changepurse and gives the boy three extra pennies with "
+ "his dollar, hoping that he might luck into the correct "
+ "amount. The boy gives him back two of his own pennies "
+ "and then the big shiny quarter that is his prize. "
+ "-RICHH");
if (match(text, "m/quarter/")) /** Does text contain 'quarter'? **/
printf("match: Text contains the word 'quarter'.\n\n");