diff options
author | Robert Dewar <dewar@adacore.com> | 2005-06-16 10:45:19 +0200 |
---|---|---|
committer | Arnaud Charlet <charlet@gcc.gnu.org> | 2005-06-16 10:45:19 +0200 |
commit | 357ac4df50fc0c22a5cee64bee133b4f2fdfba38 (patch) | |
tree | 5b916e5fc59de413560d104b03f3d24bb616e5c5 /gcc/ada/stylesw.ads | |
parent | 38d7a13afcafa6d5b53ec2caa8d2d9eda1989152 (diff) | |
download | gcc-357ac4df50fc0c22a5cee64bee133b4f2fdfba38.zip gcc-357ac4df50fc0c22a5cee64bee133b4f2fdfba38.tar.gz gcc-357ac4df50fc0c22a5cee64bee133b4f2fdfba38.tar.bz2 |
scng.adb: Add call to new Check_EOF routine
2005-06-14 Robert Dewar <dewar@adacore.com>
* scng.adb: Add call to new Check_EOF routine
(Accumulate_Checksum): Properly handle wide wide char >= 2 ** 24
Add some comments regarding wide character handling
* style.ads, styleg.ads, styleg.adb: Implement new style switch -gnatyu
* stylesw.ads, stylesw.adb: Implement new style switch -gnatyu
* g-utf_32.ads, g-utf_32.adb (Is_UTF_32_Non_Graphic): Other_Format
characters are now considered graphic characters and hence yield false
in this call.
From-SVN: r101056
Diffstat (limited to 'gcc/ada/stylesw.ads')
-rw-r--r-- | gcc/ada/stylesw.ads | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gcc/ada/stylesw.ads b/gcc/ada/stylesw.ads index bd9d1a8..ab3b3b9 100644 --- a/gcc/ada/stylesw.ads +++ b/gcc/ada/stylesw.ads @@ -56,6 +56,11 @@ package Stylesw is -- This can be set True by using the -gnatg or -gnatyb switches. If -- it is True, then spaces at the end of lines are not permitted. + Style_Check_Blank_Lines : Boolean := False; + -- This can be set True by using the -gnatg or -gnatyu switches. If + -- it is True, then multiple blank lines are not permitted, and there + -- may not be a blank line at the end of the file. + Style_Check_Comments : Boolean := False; -- This can be set True by using the -gnatg or -gnatyc switches. If -- it is True, then comments are style checked as follows: |