diff options
author | Robert Dewar <dewar@adacore.com> | 2009-07-13 10:55:40 +0000 |
---|---|---|
committer | Arnaud Charlet <charlet@gcc.gnu.org> | 2009-07-13 12:55:40 +0200 |
commit | 3c2815d8bd51caf55b3e7682f81bf9ca5d44d544 (patch) | |
tree | 5c832792a179568751c60ff8d83bfc233f5e68f6 /gcc/ada/prj-conf.adb | |
parent | 197e4514ff1feff34e0815afafb6555e56121e19 (diff) | |
download | gcc-3c2815d8bd51caf55b3e7682f81bf9ca5d44d544.tar.gz |
opt.ads, [...]: Minor reformatting
2009-07-13 Robert Dewar <dewar@adacore.com>
* opt.ads, prj-conf.adb, prj-env.adb, prj-ext.adb, prj-nmsc.adb,
prj-proc.adb, prj-tree.adb, prj-tree.ads: Minor reformatting
From-SVN: r149570
Diffstat (limited to 'gcc/ada/prj-conf.adb')
-rw-r--r-- | gcc/ada/prj-conf.adb | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/gcc/ada/prj-conf.adb b/gcc/ada/prj-conf.adb index 10fbdd77a88..b29082d90e5 100644 --- a/gcc/ada/prj-conf.adb +++ b/gcc/ada/prj-conf.adb @@ -1176,6 +1176,8 @@ package body Prj.Conf is Name : Name_Id; Naming : Project_Node_Id; + -- Start of processing for Add_Default_GNAT_Naming_Scheme + begin if Config_File = Empty_Node then @@ -1186,6 +1188,7 @@ package body Prj.Conf is Name := Name_Find; -- An invalid project name to avoid conflicts with user-created ones + Name_Len := 5; Name_Buffer (1 .. Name_Len) := "_auto"; @@ -1215,8 +1218,8 @@ package body Prj.Conf is Create_Attribute (Name_Library_Auto_Init_Supported, "false"); end if; - -- Setup Ada support (Ada is the default language here, since this is - -- only called when no config file existed initially, ie for + -- Setup Ada support (Ada is the default language here, since this + -- is only called when no config file existed initially, ie for -- gnatmake). Create_Attribute (Name_Default_Language, "ada"); @@ -1234,7 +1237,6 @@ package body Prj.Conf is (Project => Config_File, In_Tree => Project_Tree, Backward_Compatibility => False); - end if; end if; end Add_Default_GNAT_Naming_Scheme; |