https://git.reactos.org/?p=reactos.git;a=commitdiff;h=cfcca53856b369f10b10b…
commit cfcca53856b369f10b10b1e70f226952811ffa15
Author: Hermès Bélusca-Maïto <hermes.belusca-maito(a)reactos.org>
AuthorDate: Thu Nov 16 21:27:27 2017 +0100
[CMD] Fix '?' command output by adding a missing new-line. CORE-14016
Patch by Doug Lyons.
---
base/shell/cmd/cmdtable.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/base/shell/cmd/cmdtable.c b/base/shell/cmd/cmdtable.c
index 83e7daee0d..8221f06e32 100644
--- a/base/shell/cmd/cmdtable.c
+++ b/base/shell/cmd/cmdtable.c
@@ -253,6 +253,7 @@ VOID PrintCommandList(VOID)
if (++y == 8)
{
ConOutPuts(cmdptr->name);
+ ConOutChar(_T('\n'));
y = 0;
}
else