Commit 162c52f3 by Robert Dewar Committed by Arnaud Charlet

a-teioed.ads: Correct value of Default_Fill

2008-03-26  Robert Dewar  <dewar@adacore.com>

	* a-teioed.ads: Correct value of Default_Fill

	* a-teioed.adb (Image): Use Fill_Character instead of '*' to fill

From-SVN: r133551
parent cfd71216
......@@ -417,7 +417,7 @@ package body Ada.Text_IO.Editing is
Answer (J) := Separator_Character;
elsif Answer (J) = 'b' then
Answer (J) := '*';
Answer (J) := Fill_Character;
end if;
end loop;
......@@ -426,7 +426,7 @@ package body Ada.Text_IO.Editing is
end if;
for J in Pic.Start_Float .. Position loop
Answer (J) := '*';
Answer (J) := Fill_Character;
end loop;
else
......
......@@ -6,7 +6,7 @@
-- --
-- S p e c --
-- --
-- Copyright (C) 1992-2006, Free Software Foundation, Inc. --
-- Copyright (C) 1992-2007, Free Software Foundation, Inc. --
-- --
-- This specification is derived from the Ada Reference Manual for use with --
-- GNAT. The copyright notice above, and the license provisions that follow --
......@@ -55,7 +55,7 @@ package Ada.Text_IO.Editing is
Picture_Error : exception;
Default_Currency : constant String := "$";
Default_Fill : constant Character := ' ';
Default_Fill : constant Character := '*';
Default_Separator : constant Character := ',';
Default_Radix_Mark : constant Character := '.';
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment