summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc Espie <espie@cvs.openbsd.org>2006-11-16 21:56:25 +0000
committerMarc Espie <espie@cvs.openbsd.org>2006-11-16 21:56:25 +0000
commitf90b77527592713d8fafed5870e9e121621380d4 (patch)
tree0359e1304f381f99648a14da54afd849da484f9b
parent6b5c85d2523a4a56efc397adc43eaf175402c86c (diff)
let E<copy> be recognized for man documents as well.
Noticed by jasper@, work by millert@ and me, okay millert@
-rw-r--r--gnu/usr.bin/perl/lib/Pod/Man.pm3
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/usr.bin/perl/lib/Pod/Man.pm b/gnu/usr.bin/perl/lib/Pod/Man.pm
index 7f531702707..90ecd8bae94 100644
--- a/gnu/usr.bin/perl/lib/Pod/Man.pm
+++ b/gnu/usr.bin/perl/lib/Pod/Man.pm
@@ -1,5 +1,5 @@
# Pod::Man -- Convert POD data to formatted *roff input.
-# $Id: Man.pm,v 1.9 2006/11/15 16:43:43 espie Exp $
+# $Id: Man.pm,v 1.10 2006/11/16 21:56:24 espie Exp $
#
# Copyright 1999, 2000, 2001, 2002, 2003 by Russ Allbery <rra@stanford.edu>
#
@@ -257,6 +257,7 @@ $PREAMBLE = <<'----END OF PREAMBLE----';
'nbsp' => '\\ ', # non-breaking space
'shy' => '', # soft (discretionary) hyphen
+ 'copy' => '\(co', # copyright
);