diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1999-05-17 09:06:45 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1999-05-17 09:06:45 +0000 |
commit | 3f4520fee5e3350893877859562bde5dfa18d3a8 (patch) | |
tree | fc46eb4b30c830bd5360b0e8fec7ca4faed8bbce /pp.c | |
parent | 9d6e9d4dc69df06db9fc574444756ce7168620e7 (diff) | |
download | perl-3f4520fee5e3350893877859562bde5dfa18d3a8.tar.gz |
emit more appropriate diagnostic for failed glob (variant
of patch suggested by Graham Barr)
p4raw-id: //depot/perl@3432
Diffstat (limited to 'pp.c')
-rw-r--r-- | pp.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -472,7 +472,7 @@ PP(pp_prototype) goto set; else { /* None such */ nonesuch: - croak("Cannot find an opnumber for \"%s\"", s+6); + croak("Can't find an opnumber for \"%s\"", s+6); } } } |