summaryrefslogtreecommitdiff
path: root/pp.c
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>1999-05-17 09:06:45 +0000
committerGurusamy Sarathy <gsar@cpan.org>1999-05-17 09:06:45 +0000
commit3f4520fee5e3350893877859562bde5dfa18d3a8 (patch)
treefc46eb4b30c830bd5360b0e8fec7ca4faed8bbce /pp.c
parent9d6e9d4dc69df06db9fc574444756ce7168620e7 (diff)
downloadperl-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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pp.c b/pp.c
index e76266e1b2..afee215cd5 100644
--- a/pp.c
+++ b/pp.c
@@ -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);
}
}
}