diff options
author | Arnaud Charlet <charlet@gcc.gnu.org> | 2014-01-22 17:53:24 +0100 |
---|---|---|
committer | Arnaud Charlet <charlet@gcc.gnu.org> | 2014-01-22 17:53:24 +0100 |
commit | fba9ebfc51f21a9ba4848c721bb925078737b024 (patch) | |
tree | c2a3fc941f046c66f8972beb7e9e0440daca362e /gcc/ada/csets.ads | |
parent | b2834fbd22f71ce7678ddd538b0d5455d6e7caba (diff) | |
download | gcc-fba9ebfc51f21a9ba4848c721bb925078737b024.zip gcc-fba9ebfc51f21a9ba4848c721bb925078737b024.tar.gz gcc-fba9ebfc51f21a9ba4848c721bb925078737b024.tar.bz2 |
[multiple changes]
2014-01-22 Thomas Quinot <quinot@adacore.com>
* rtsfind.adb: Update comment.
2014-01-22 Hristian Kirtchev <kirtchev@adacore.com>
* sem_aux.ads, sem_aux.adb (Is_Body): New routine.
* sem_ch3.adb (Analyze_Declarations): Add local variable
Body_Seen. Generate the spec of a late controlled
primitive body that is about to freeze its related type.
(Handle_Late_Controlled_Primitive): New routine.
2014-01-22 Robert Dewar <dewar@adacore.com>
* a-stream.adb: Minor reformatting.
2014-01-22 Ed Schonberg <schonberg@adacore.com>
* sem_ch8.adb (From_Actual_Package): Introduce a recursive
sub-procedure Declared_In_Actual to handle properly the visibility
of actuals in actual packages, that are themselves actuals to a
actual package of the current instance. This mimics properly the
visibility of formals of formal packages declared with a box,
within the corresponding generic unit.
2014-01-22 Robert Dewar <dewar@adacore.com>
* checks.adb: Do not assume that a volatile variable is valid.
2014-01-22 Thomas Quinot <quinot@adacore.com>
* g-catiio.ads (Image, Value): Clarify that these functions
operate in the local time zone. Minor documentation update.
2014-01-22 Thomas Quinot <quinot@adacore.com>
* csets.adb, csets.ads, opt.ads: Minor documentation fixes.
From-SVN: r206930
Diffstat (limited to 'gcc/ada/csets.ads')
-rw-r--r-- | gcc/ada/csets.ads | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/gcc/ada/csets.ads b/gcc/ada/csets.ads index 2f40e36..bae2347 100644 --- a/gcc/ada/csets.ads +++ b/gcc/ada/csets.ads @@ -6,7 +6,7 @@ -- -- -- S p e c -- -- -- --- Copyright (C) 1992-2011, Free Software Foundation, Inc. -- +-- Copyright (C) 1992-2013, 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- -- @@ -60,14 +60,14 @@ package Csets is -- The character set in use is specified by the value stored in -- Opt.Identifier_Character_Set, which has the following settings: - -- '1' Latin-1 (ISO-8859-1) - -- '2' Latin-2 (ISO-8859-2) - -- '3' Latin-3 (ISO-8859-3) - -- '4' Latin-4 (ISO-8859-4) - -- '5' Latin-5 (ISO-8859-5, Cyrillic) - -- 'p' IBM PC (code page 437) - -- '8' IBM PC (code page 850) - -- '9' Latin-9 (ISO-9959-9) + -- '1' Latin-1 (ISO-8859-1) + -- '2' Latin-2 (ISO-8859-2) + -- '3' Latin-3 (ISO-8859-3) + -- '4' Latin-4 (ISO-8859-4) + -- '5' Cyrillic (ISO-8859-5) + -- 'p' IBM PC (code page 437) + -- '8' IBM PC (code page 850) + -- '9' Latin-9 (ISO-8859-15) -- 'f' Full upper set (all distinct) -- 'n' No upper characters (Ada/83 rules) -- 'w' Latin-1 plus wide characters also allowed |