diff options
-rw-r--r-- | lib/sigtrap.pm | 2 | ||||
-rw-r--r-- | mro.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/sigtrap.pm b/lib/sigtrap.pm index de520a03be..59c15b99cb 100644 --- a/lib/sigtrap.pm +++ b/lib/sigtrap.pm @@ -115,7 +115,7 @@ sub handler_traceback { } elsif ($s eq '(eval)') { $s = "eval {...}"; } - $f = "file `$f'" unless $f eq '-e'; + $f = "file '$f'" unless $f eq '-e'; $mess = "$w$s$a called from $f line $l\n"; syswrite(STDERR, $mess, length($mess)); } @@ -994,7 +994,7 @@ S_mro_gather_and_rename(pTHX_ HV * const stashes, HV * const seen_stashes, /* Add it to the big list if it needs * mro_isa_changed_in called on it. That happens if it was * detached from the symbol table (so it had no HvENAME) before - * being assigned to the spot named by the `name' variable, because + * being assigned to the spot named by the 'name' variable, because * its cached isa linearisation is now stale (the effective name * having changed), and subclasses will then use that cache when * mro_package_moved calls mro_isa_changed_in. (See |