summaryrefslogtreecommitdiff
path: root/utils/h2ph.PL
diff options
context:
space:
mode:
authorjkeenan <jkeenan@cpan.org>2011-11-20 09:55:28 -0500
committerFather Chrysostomos <sprout@cpan.org>2011-11-22 16:27:23 -0800
commit28fb188d5c673f559bc91fefc5ea18a47017d88e (patch)
treea2e3ef35c7b4bacd7d8913141b5820f2a0d1f206 /utils/h2ph.PL
parent6b0bcbb15a2b81f5d96b8c9dc4c65f0054126b86 (diff)
downloadperl-28fb188d5c673f559bc91fefc5ea18a47017d88e.tar.gz
[RT #36079] Convert ` to '.
Diffstat (limited to 'utils/h2ph.PL')
-rw-r--r--utils/h2ph.PL14
1 files changed, 7 insertions, 7 deletions
diff --git a/utils/h2ph.PL b/utils/h2ph.PL
index e0b5e3aa9f..a2d737b555 100644
--- a/utils/h2ph.PL
+++ b/utils/h2ph.PL
@@ -96,7 +96,7 @@ while (defined (my $file = next_file())) {
$t = '';
$tab = 0;
- # $eval_index goes into ``#line'' directives, to help locate syntax errors:
+ # $eval_index goes into '#line' directives, to help locate syntax errors:
$eval_index = 1;
if ($file eq '-') {
@@ -154,7 +154,7 @@ while (defined (my $file = next_file())) {
$new = 1 if $new eq '';
- # Shunt around such directives as `#define FOO FOO':
+ # Shunt around such directives as '#define FOO FOO':
next if $new =~ /^\s*&\Q$name\E\s*\z/;
$new = reindent($new);
@@ -658,12 +658,12 @@ sub next_file
if ($opt_r) {
expand_glob($file);
} else {
- print STDERR "Skipping directory `$file'\n";
+ print STDERR "Skipping directory '$file'\n";
}
} elsif ($opt_a) {
return $file;
} else {
- print STDERR "Skipping `$file': not a file or directory\n";
+ print STDERR "Skipping '$file': not a file or directory\n";
}
}
@@ -843,7 +843,7 @@ sub _extract_cc_defines
my $allsymbols = join " ",
@Config{'ccsymbols', 'cppsymbols', 'cppccsymbols'};
- # Split compiler pre-definitions into `key=value' pairs:
+ # Split compiler pre-definitions into 'key=value' pairs:
while ($allsymbols =~ /([^\s]+)=((\\\s|[^\s])+)/g) {
$define{$1} = $2;
if ($opt_D) {
@@ -920,7 +920,7 @@ is not specified, then links are skipped over.
=item -h
-Put ``hints'' in the .ph files which will help in locating problems with
+Put 'hints' in the .ph files which will help in locating problems with
I<h2ph>. In those cases when you B<require> a B<.ph> file containing syntax
errors, instead of the cryptic
@@ -939,7 +939,7 @@ This is primarily used for debugging I<h2ph>.
=item -Q
-``Quiet'' mode; don't print out the names of the files being converted.
+'Quiet' mode; don't print out the names of the files being converted.
=back