projects
/
p5sagit/p5-mst-13.2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
920f3fa
)
Fix handling of author's names that had apostrophes. Based on a patch
Steve Peters [Sun, 4 Dec 2005 15:30:55 +0000 (15:30 +0000)]
by Sean O'Rourke <sorourke@cs.ucsd.edu> in RT bug #22950.
p4raw-id: //depot/perl@26252
utils/h2xs.PL
patch
|
blob
|
blame
|
history
diff --git
a/utils/h2xs.PL
b/utils/h2xs.PL
index
ec9dfd2
..
7a21752
100644
(file)
--- a/
utils/h2xs.PL
+++ b/
utils/h2xs.PL
@@
-1239,6
+1239,7
@@
eval {
}
};
+$author =~ s/'/\\'/g if defined $author;
$author ||= "A. U. Thor";
$email ||= 'a.u.thor@a.galaxy.far.far.away';