From 023ebef22217508414865a44fffcbedefcaf3250 Mon Sep 17 00:00:00 2001 From: Magnus Olsen Date: Fri, 15 Jul 2005 17:46:26 +0000 Subject: [PATCH] implement $s svn path=/trunk/; revision=16585 --- reactos/subsys/system/cmd/prompt.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/reactos/subsys/system/cmd/prompt.c b/reactos/subsys/system/cmd/prompt.c index 6477c2071b3..94147549061 100644 --- a/reactos/subsys/system/cmd/prompt.c +++ b/reactos/subsys/system/cmd/prompt.c @@ -133,8 +133,11 @@ VOID PrintPrompt(VOID) ConOutChar (_T('=')); break; - case _T('T'): - //PrintTime (); + case _T('S'): + ConOutChar (_T(' ')); + break; + + case _T('T'): { TCHAR szTime[32]; GetTimeFormat(LOCALE_USER_DEFAULT, 0, NULL, NULL,szTime, sizeof(szTime));