diff options
author | Arnaud Charlet <charlet@gcc.gnu.org> | 2004-11-19 12:25:05 +0100 |
---|---|---|
committer | Arnaud Charlet <charlet@gcc.gnu.org> | 2004-11-19 12:25:05 +0100 |
commit | 87b62748db18a61884ae1d37e8bbdf098400ddd8 (patch) | |
tree | 83244121c86d11bdd9e4dec6f728dd885a7abcc2 /gcc/ada/gprep.adb | |
parent | 47190c6bc99ff904e4edc67b772e1d222726b900 (diff) | |
download | gcc-87b62748db18a61884ae1d37e8bbdf098400ddd8.zip gcc-87b62748db18a61884ae1d37e8bbdf098400ddd8.tar.gz gcc-87b62748db18a61884ae1d37e8bbdf098400ddd8.tar.bz2 |
gnat1drv.adb, [...]: Output the copyright message on a separate line from the version message.
* gnat1drv.adb, gnatbind.adb, gnatchop.adb, gnatfind.adb, gnatlink.adb,
gnatls.adb, gnatxref.adb, gprep.adb: Output the copyright message on a
separate line from the version message.
From-SVN: r90910
Diffstat (limited to 'gcc/ada/gprep.adb')
-rw-r--r-- | gcc/ada/gprep.adb | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/gcc/ada/gprep.adb b/gcc/ada/gprep.adb index fdd1f8b..53b2bd6f 100644 --- a/gcc/ada/gprep.adb +++ b/gcc/ada/gprep.adb @@ -45,7 +45,6 @@ with GNAT.Command_Line; with GNAT.Directory_Operations; use GNAT.Directory_Operations; with GNAT.OS_Lib; use GNAT.OS_Lib; - package body GPrep is Copyright_Displayed : Boolean := False; @@ -133,9 +132,8 @@ package body GPrep is procedure Display_Copyright is begin if not Copyright_Displayed then - Write_Line ("GNAT Preprocessor " & - Gnatvsn.Gnat_Version_String & - " Copyright 1996-2004 Free Software Foundation, Inc."); + Write_Line ("GNAT Preprocessor " & Gnatvsn.Gnat_Version_String); + Write_Line ("Copyright 1996-2004 Free Software Foundation, Inc."); Copyright_Displayed := True; end if; end Display_Copyright; |