diff options
author | charlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-04-20 12:29:12 +0000 |
---|---|---|
committer | charlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-04-20 12:29:12 +0000 |
commit | 15df5c86cfed17349c64de62ba1075f885f56e96 (patch) | |
tree | 455aaf901e0849b2d28a3231c491f30d8776711f /gcc/ada/output.adb | |
parent | 2f29393fcb4a0b9f4a008a6210abcfdadaf2955f (diff) | |
download | gcc-15df5c86cfed17349c64de62ba1075f885f56e96.tar.gz |
2009-04-20 Bob Duff <duff@adacore.com>
* output.adb (Flush_Buffer): Do not indent blank lines.
(Ignore_Output): New procedure for output suppression.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@146402 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ada/output.adb')
-rw-r--r-- | gcc/ada/output.adb | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/gcc/ada/output.adb b/gcc/ada/output.adb index 745d47fab38..141c12fb294 100644 --- a/gcc/ada/output.adb +++ b/gcc/ada/output.adb @@ -112,14 +112,17 @@ package body Output is Len : constant Natural := Next_Col - 1; + -- Start of processing for Flush_Buffer + begin if Len /= 0 then begin -- If there's no indentation, or if the line is too long with - -- indentation, just write the buffer. + -- indentation, or if it's a blank line, just write the buffer. if Cur_Indentation = 0 or else Cur_Indentation + Len > Buffer_Max + or else Buffer (1 .. Len) = (1 => ASCII.LF) then Write_Buffer (Buffer (1 .. Len)); @@ -156,6 +159,15 @@ package body Output is end if; end Flush_Buffer; + ------------------- + -- Ignore_Output -- + ------------------- + + procedure Ignore_Output (S : String) is + begin + null; + end Ignore_Output; + ------------ -- Indent -- ------------ |