[[[ * subversion/clients/cmdline/log-cmd.c (log_message_receiver): Removed hardcoded string "line[s]" from log header. Users mistake this last field as the number of lines changed in the transaction. It is not. Discussion thread: http://svn.haxx.se/dev/archive-2005-07/0818.shtml ]]] Index: subversion/clients/cmdline/log-cmd.c =================================================================== --- subversion/clients/cmdline/log-cmd.c (revision 15393) +++ subversion/clients/cmdline/log-cmd.c (working copy) @@ -182,10 +182,7 @@ if (! lb->omit_log_message) { lines = svn_cstring_count_newlines (msg) + 1; - SVN_ERR (svn_cmdline_printf (pool, - (lines != 1) - ? " | %d lines" - : " | %d line", lines)); + SVN_ERR (svn_cmdline_printf (pool, " | %d", lines)); } SVN_ERR (svn_cmdline_printf (pool, "\n"));