diff options
author | charlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-10-05 10:07:35 +0000 |
---|---|---|
committer | charlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-10-05 10:07:35 +0000 |
commit | 7af3899959c6a27e2fde03222ae265f4cb54a7f4 (patch) | |
tree | 0fa2829f8d8a8f4fb45ed1d55d449fa99eaed70b /gcc/ada/a-direct.ads | |
parent | e74e236e598ac6e68248b43326a3e397bc37b4c7 (diff) | |
download | gcc-7af3899959c6a27e2fde03222ae265f4cb54a7f4.tar.gz |
2010-10-05 Ed Schonberg <schonberg@adacore.com>
* sem_res.adb (Check_Parameterless_Call): If the prefix of 'Address is
an explicit dereference of an access to function, the prefix is not
interpreted as a parameterless call.
2010-10-05 Ed Schonberg <schonberg@adacore.com>
* exp_attr.adb: For 'Read and 'Write, use full view of base type if
private.
2010-10-05 Vincent Celier <celier@adacore.com>
* make.adb (Switches_Of): Allow wild cards in index of attributes
Switches.
* prj-util.adb (Value_Of): When Allow_Wildcards is True, use the index
of the associative array as a glob regular expression.
* prj-util.ads (Value_Of (Index, In_Array)): New Boolean parameter
Allow_Wildcards, defaulted to False.
(Value_Of (Name, Attribute_Or_Array_Name)): Ditto
* projects.texi: Document that attribute Switches (<file name>) may
use wild cards in the index.
2010-10-05 Robert Dewar <dewar@adacore.com>
* a-direct.adb, a-direct.ads, back_end.adb, checks.adb,
einfo.adb: Minor reformatting.
* debug.adb: Remove obsolete documentation for d.Z flag.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@164978 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ada/a-direct.ads')
-rw-r--r-- | gcc/ada/a-direct.ads | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/gcc/ada/a-direct.ads b/gcc/ada/a-direct.ads index ddabed6fc33..267c9c2e233 100644 --- a/gcc/ada/a-direct.ads +++ b/gcc/ada/a-direct.ads @@ -105,7 +105,7 @@ package Ada.Directories is -- the external environment does not support the creation of a directory -- with the given name (in the absence of Name_Error) and form. -- - -- The Form parameter is ignored. + -- The Form parameter is ignored procedure Delete_Directory (Directory : String); -- Deletes an existing empty directory with name Directory. The exception @@ -132,7 +132,7 @@ package Ada.Directories is -- not support the creation of any directories with the given name (in the -- absence of Name_Error) and form. -- - -- The Form parameter is ignored. + -- The Form parameter is ignored procedure Delete_Tree (Directory : String); -- Deletes an existing directory with name Directory. The directory and @@ -164,17 +164,17 @@ package Ada.Directories is (Source_Name : String; Target_Name : String; Form : String := ""); - -- Copies the contents of the existing external file with Source_Name - -- to Target_Name. The resulting external file is a duplicate of the source - -- external file. The Form can be used to give system-dependent + -- Copies the contents of the existing external file with Source_Name to + -- Target_Name. The resulting external file is a duplicate of the source + -- external file. The Form argument can be used to give system-dependent -- characteristics of the resulting external file; the interpretation of -- the Form parameter is implementation-defined. Exception Name_Error is -- propagated if the string given as Source_Name does not identify an -- existing external ordinary or special file or if the string given as - -- Target_Name does not allow the identification of an external file. - -- The exception Use_Error is propagated if the external environment does - -- not support the creating of the file with the name given by Target_Name - -- and form given by Form, or copying of the file with the name given by + -- Target_Name does not allow the identification of an external file. The + -- exception Use_Error is propagated if the external environment does not + -- support the creating of the file with the name given by Target_Name and + -- form given by Form, or copying of the file with the name given by -- Source_Name (in the absence of Name_Error). -- -- Interpretation of the Form parameter: |