Hi folks,
In the command line help, on my Windows 2000 PC, lines of exactly 80
characters are followed by a spurious empty line so the description of
the --native-eol switch description is split in an ugly way.
Simon
--
___
oo // \\ "De Chelonian Mobile"
(_,\/ \_/ \ TortoiseSVN
\ \_/_\_/> The coolest Interface to (Sub)Version Control
/_/ \_\ http://tortoisesvn.tigris.org
[[[
* subversion/clients/cmdline/main.c:
svn_cl__options[]
Reformat the help text for the "native-eol" option because lines of
exactly 80 chars can result in a spurious newline on some systems.
Separate leading whitespace from the help text, so that what you see
here in the code resembles the output format more closely.
]]]
Index: main.c
===================================================================
--- main.c (revision 15373)
+++ main.c (working copy)
@@ -141,10 +141,12 @@
N_("disable automatic properties")},
{"native-eol", svn_cl__native_eol_opt, 1,
N_("use a different EOL marker than the standard\n"
- " system marker for files "
- "with a native svn:eol-style\n"
- " property. ARG may be one "
- "of 'LF', 'CR', 'CRLF'")},
+ " "
+ "system marker for files with the svn:eol-style\n"
+ " "
+ "property set to 'native'.\n"
+ " "
+ "ARG may be one of 'LF', 'CR', 'CRLF'")},
{"limit", svn_cl__limit_opt, 1,
N_("maximum number of log entries")},
{"no-unlock", svn_cl__no_unlock_opt, 0,
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Wed Jul 20 23:06:33 2005