diff options
author | Gurusamy Sarathy <gsar@engin.umich.edu> | 1997-01-27 03:24:25 -0500 |
---|---|---|
committer | Chip Salzenberg <chip@atlantic.net> | 1997-01-29 18:11:00 +1200 |
commit | 4b094ceb80288fc9f7c15ae78fc662051510284d (patch) | |
tree | f01d00eb5600d8bccd5dc213309c73dc8d240388 /pod/perlsyn.pod | |
parent | 8d9aa5e098152ea47b56a8918b624c7a92a1ef22 (diff) | |
download | perl-4b094ceb80288fc9f7c15ae78fc662051510284d.tar.gz |
5.003_23: small typo in perlsyn.pod
private-msgid: <199701270824.DAA01169@aatma.engin.umich.edu>
Diffstat (limited to 'pod/perlsyn.pod')
-rw-r--r-- | pod/perlsyn.pod | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perlsyn.pod b/pod/perlsyn.pod index 8bb557e7f5..77dcc597a9 100644 --- a/pod/perlsyn.pod +++ b/pod/perlsyn.pod @@ -519,7 +519,7 @@ this, one can control perl's idea of filenames and line numbers in error or warning messages (especially for strings that are processed with eval()). The syntax for this mechanism is the same as for most C preprocessors: it matches the regular expression -C</^#\s*line\s+(\d+)\s*(?:\s"([^"])*")?/> with C<$1> being the line +C</^#\s*line\s+(\d+)\s*(?:\s"([^"]*)")?/> with C<$1> being the line number for the next line, and C<$2> being the optional filename (specified within quotes). |