show -E in error message when called with -E
authorRenée Bäcker <renee.baecker@smart-websolutions.de>
Mon, 12 Jan 2009 10:39:11 +0000 (11:39 +0100)
committerNicholas Clark <nick@plum.flirble.org>
Mon, 12 Jan 2009 17:12:14 +0000 (17:12 +0000)
commitefdc43f5015438920ce11f05539e55cb02940377
tree467208ae404bfc40922ce3c9dfc076e7588a6ebe
parent7222c10abc8865471c9788388dbc9b84939ca704
show -E in error message when called with -E

Currently, perl shows -e if an error occurs even it is called with -E.
The attached patch changes this...

Current behaviour:
D:\Perl510\bin>perl.exe -E "say ->"
syntax error at -e line 1, at EOF
Execution of -e aborted due to compilation errors.

With patch:
D:\Perl510\bin>perl.exe -E "say ->"
syntax error at -E line 1, at EOF
Execution of -E aborted due to compilation errors.

Cheers,
Renee
perl.c