Skip to content

Commit

Permalink
Note the U8 sized space created by removing -P, and check that it is
Browse files Browse the repository at this point in the history
now an illegal command line flag.

p4raw-id: //depot/perl@32956
  • Loading branch information
nwc10 committed Jan 11, 2008
1 parent 2b9dff6 commit 9688998
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion intrpvar.h
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,6 @@ PERLVAR(Iminus_l, bool)
PERLVAR(Iminus_a, bool)
PERLVAR(Iminus_F, bool)
PERLVAR(Idoswitches, bool)

PERLVAR(Iminus_E, bool)

/*
Expand All @@ -241,6 +240,7 @@ PERLVAR(Iexit_flags, U8) /* was exit() unexpected, etc. */
PERLVAR(Isrand_called, bool)
/* Part of internal state, but makes the 16th 1 byte variable in a row. */
PERLVAR(Itainting, bool) /* doing taint checks */
/* Space for a U8 */
PERLVAR(Iinplace, char *)
PERLVAR(Ie_script, SV *)

Expand Down
4 changes: 2 additions & 2 deletions t/run/switches.t
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ BEGIN {

BEGIN { require "./test.pl"; }

plan(tests => 61);
plan(tests => 62);

use Config;

Expand Down Expand Up @@ -255,7 +255,7 @@ SWTESTPM

# Tests for switches which do not exist

foreach my $switch (split //, "ABbGgHJjKkLNOoQqRrYyZz123456789_")
foreach my $switch (split //, "ABbGgHJjKkLNOoPQqRrYyZz123456789_")
{
local $TODO = ''; # these ones should work on VMS

Expand Down

0 comments on commit 9688998

Please sign in to comment.