diff options
author | jkeenan <jkeenan@cpan.org> | 2011-11-19 19:28:08 -0500 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2011-11-22 16:27:15 -0800 |
commit | 19f4563d308d36e3c082bc240db976a379fddfc6 (patch) | |
tree | bac2c125118947d3759eeba096c463534ef122cc /h2pl | |
parent | 882ce58311c12cbb8ddfaeaaf1c718a77e62c5b9 (diff) | |
download | perl-19f4563d308d36e3c082bc240db976a379fddfc6.tar.gz |
[RT #36079] Convert ` to '.
Diffstat (limited to 'h2pl')
-rw-r--r-- | h2pl/tcbreak | 2 | ||||
-rw-r--r-- | h2pl/tcbreak2 | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/h2pl/tcbreak b/h2pl/tcbreak index 2677cc982b..aa6e33e7b6 100644 --- a/h2pl/tcbreak +++ b/h2pl/tcbreak @@ -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; diff --git a/h2pl/tcbreak2 b/h2pl/tcbreak2 index fcbf926516..d9fd735791 100644 --- a/h2pl/tcbreak2 +++ b/h2pl/tcbreak2 @@ -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; |