Skip to content

Commit

Permalink
[RT #36079] Convert ` to '.
Browse files Browse the repository at this point in the history
  • Loading branch information
jkeenan authored and Father Chrysostomos committed Nov 23, 2011
1 parent 882ce58 commit 19f4563
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions INSTALL
Expand Up @@ -1430,7 +1430,7 @@ See also the L<"vsprintf"> item below.
If you get error messages such as the following (the exact line
numbers and function name may vary in different versions of perl):

util.c: In function `Perl_form':
util.c: In function 'Perl_form':
util.c:1107: number of arguments doesn't match prototype
proto.h:125: prototype declaration

Expand Down Expand Up @@ -2031,7 +2031,7 @@ pages, however. You may need to be root to run B<make install>. If you
are not root, you must still have permission to install into the directories
in question and you should ignore any messages about chown not working.

If "make install" just says "`install' is up to date" or something
If "make install" just says "'install' is up to date" or something
similar, you may be on a case-insensitive filesystems such as Mac's HFS+,
and you should say "make install-all". (This confusion is brought to you
by the Perl distribution having a file called INSTALL.)
Expand Down
2 changes: 1 addition & 1 deletion h2pl/tcbreak
Expand Up @@ -12,6 +12,6 @@ $c = getc;

print "$c\n";

printf "you gave me `%s', which is 0x%02x\n", $c, ord($c);
printf "you gave me '%s', which is 0x%02x\n", $c, ord($c);

&cooked;
2 changes: 1 addition & 1 deletion h2pl/tcbreak2
Expand Up @@ -12,6 +12,6 @@ $c = getc;

print "$c\n";

printf "you gave me `%s', which is 0x%02x\n", $c, ord($c);
printf "you gave me '%s', which is 0x%02x\n", $c, ord($c);

&cooked;
2 changes: 1 addition & 1 deletion installman
Expand Up @@ -214,7 +214,7 @@ sub rename {
for ($i = 1; $i < 50; $i++) {
last if CORE::rename($to, "$to.$i");
}
warn("Cannot rename to `$to.$i': $!"), return 0
warn("Cannot rename to '$to.$i': $!"), return 0
if $i >= 50; # Give up!
}
link($from,$to) || return 0;
Expand Down
2 changes: 1 addition & 1 deletion installperl
Expand Up @@ -661,7 +661,7 @@ sub safe_rename {
for ($i = 1; $i < 50; $i++) {
last if rename($to, "$to.$i");
}
warn("Cannot rename to `$to.$i': $!"), return 0
warn("Cannot rename to '$to.$i': $!"), return 0
if $i >= 50; # Give up!
}
link($from,$to) || return 0;
Expand Down

0 comments on commit 19f4563

Please sign in to comment.