cmd: Fix the indentation of the IF usage message.

Francois Gouget fgouget at free.fr
Wed Sep 7 05:50:35 CDT 2011


---

Start of line spaces and tabs are ignored which was not the intent here.
Also spaces seem like a better way to indent on the console than tabs. 
An alternative to escaping the first space would be to use more quotes.

 programs/cmd/cmd.rc |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/programs/cmd/cmd.rc b/programs/cmd/cmd.rc
index 48bbb3a..175de86 100644
--- a/programs/cmd/cmd.rc
+++ b/programs/cmd/cmd.rc
@@ -87,9 +87,9 @@ HELP without an argument shows all CMD built-in commands.\n"
   WCMD_IF,
 "IF is used to conditionally execute a command.\n\
 \n\
-Syntax:	IF [NOT] EXIST filename command\n\
-	IF [NOT] string1==string2 command\n\
-	IF [NOT] ERRORLEVEL number command\n\
+Syntax: IF [NOT] EXIST filename command\n\
+\        IF [NOT] string1==string2 command\n\
+\        IF [NOT] ERRORLEVEL number command\n\
 \n\
 In the second form of the command, string1 and string2 must be in double\n\
 quotes. The comparison is not case-sensitive.\n"
-- 
1.7.5.4




More information about the wine-patches mailing list