You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by st...@apache.org on 2010/09/08 19:05:14 UTC

svn commit: r995156 - /subversion/trunk/subversion/svn/main.c

Author: stsp
Date: Wed Sep  8 17:05:14 2010
New Revision: 995156

URL: http://svn.apache.org/viewvc?rev=995156&view=rev
Log:
* subversion/svn/main.c
  (svn_cl__options): Add two aliases for the --no-unlock option:
    --nul (shorter to type) and --keep-lock (no confusing double-negative).

Modified:
    subversion/trunk/subversion/svn/main.c

Modified: subversion/trunk/subversion/svn/main.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/svn/main.c?rev=995156&r1=995155&r2=995156&view=diff
==============================================================================
--- subversion/trunk/subversion/svn/main.c (original)
+++ subversion/trunk/subversion/svn/main.c Wed Sep  8 17:05:14 2010
@@ -283,7 +283,9 @@ const apr_getopt_option_t svn_cl__option
                        "                             "
                        "ARG may be one of 'LF', 'CR', 'CRLF'")},
   {"limit",         'l', 1, N_("maximum number of log entries")},
-  {"no-unlock",     opt_no_unlock, 0, N_("don't unlock the targets")},
+  {"no-unlock",     opt_no_unlock, 0, N_("don't unlock the targets\n"
+                       "                             "
+                       "[aliases: --nul, --keep-lock]")},
   {"summarize",     opt_summarize, 0, N_("show a summary of the results")},
   {"remove",         opt_remove, 0, N_("remove changelist association")},
   {"changelist",    opt_changelist, 1,
@@ -399,6 +401,8 @@ const apr_getopt_option_t svn_cl__option
   {"iw",            opt_ignore_whitespace, 0, NULL},
   {"diff",          opt_show_diff, 0, NULL},
   {"idiff",         opt_internal_diff, 0, NULL},
+  {"nul",           opt_no_unlock, 0, NULL},
+  {"keep-lock",     opt_no_unlock, 0, NULL},
 
   {0,               0, 0, 0},
 };