Deleted Added
full compact
opt.c (362181) opt.c (369302)
1/*
2 * opt.c : option and argument parsing for Subversion command lines
3 *
4 * ====================================================================
5 * Licensed to the Apache Software Foundation (ASF) under one
6 * or more contributor license agreements. See the NOTICE file
7 * distributed with this work for additional information
8 * regarding copyright ownership. The ASF licenses this file

--- 312 unchanged lines hidden (view full) ---

321 const char *optstr;
322 format_option(&optstr, option, long_alias, TRUE, pool);
323 SVN_ERR(svn_cmdline_fprintf(stream, pool, " %s\n",
324 optstr));
325 }
326 }
327 }
328
1/*
2 * opt.c : option and argument parsing for Subversion command lines
3 *
4 * ====================================================================
5 * Licensed to the Apache Software Foundation (ASF) under one
6 * or more contributor license agreements. See the NOTICE file
7 * distributed with this work for additional information
8 * regarding copyright ownership. The ASF licenses this file

--- 312 unchanged lines hidden (view full) ---

321 const char *optstr;
322 format_option(&optstr, option, long_alias, TRUE, pool);
323 SVN_ERR(svn_cmdline_fprintf(stream, pool, " %s\n",
324 optstr));
325 }
326 }
327 }
328
329 if (!verbose)
329 if (!verbose && global_options && *global_options)
330 SVN_ERR(svn_cmdline_fputs(_("\n(Use '-v' to show global and experimental options.)\n"),
331 stream, pool));
332 if (have_options)
333 SVN_ERR(svn_cmdline_fprintf(stream, pool, "\n"));
334 }
335
336 return SVN_NO_ERROR;
337}

--- 931 unchanged lines hidden ---
330 SVN_ERR(svn_cmdline_fputs(_("\n(Use '-v' to show global and experimental options.)\n"),
331 stream, pool));
332 if (have_options)
333 SVN_ERR(svn_cmdline_fprintf(stream, pool, "\n"));
334 }
335
336 return SVN_NO_ERROR;
337}

--- 931 unchanged lines hidden ---