diff options
Diffstat (limited to 'gcc/ada/stylesw.adb')
-rw-r--r-- | gcc/ada/stylesw.adb | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gcc/ada/stylesw.adb b/gcc/ada/stylesw.adb index b0b351d4f32..30d5d43471d 100644 --- a/gcc/ada/stylesw.adb +++ b/gcc/ada/stylesw.adb @@ -6,7 +6,7 @@ -- -- -- B o d y -- -- -- --- Copyright (C) 1992-2003, Free Software Foundation, Inc. -- +-- Copyright (C) 1992-2004, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- @@ -134,7 +134,6 @@ package body Stylesw is procedure Set_Style_Check_Options (Options : String) is OK : Boolean; EC : Natural; - begin Set_Style_Check_Options (Options, OK, EC); end Set_Style_Check_Options; @@ -194,6 +193,9 @@ package body Stylesw is when 'n' => Style_Check_Standard := True; + when 'N' => + Reset_Style_Check_Options; + when 'M' => Style_Max_Line_Length := 0; |