From 38ad8e9a27a9acd2e5b9ff74178dc89660f6f3ba Mon Sep 17 00:00:00 2001 From: cxl Date: Fri, 31 Oct 2008 09:04:20 +0000 Subject: [PATCH] Syncing uppdev git-svn-id: svn://ultimatepp.org/upp/trunk@577 f0d560ea-af0d-0410-9eb7-867de7ffcac7 --- uppdev/Format2/Format2.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/uppdev/Format2/Format2.cpp b/uppdev/Format2/Format2.cpp index c64c40805..320ee7d44 100644 --- a/uppdev/Format2/Format2.cpp +++ b/uppdev/Format2/Format2.cpp @@ -4,6 +4,8 @@ using namespace Upp; CONSOLE_APP_MAIN { - DDUMP(Format("|%*=s|\n", 20, "test")); + DDUMP(Format("|%*s|", 20, "test")); + DDUMP(Format("|%*s|", 400, "test")); + DDUMP(Format("|%*=s|", 20, "test")); + DDUMP(Format("|%*=s|", 400, "test")); } -