Author: svn-role
Date: Mon Apr 15 17:10:30 2013
New Revision: 1468148
URL: http://svn.apache.org/r1468148
Log:
Merge r1467803 from trunk:
* r1467803
Add missing linefeed in a message.
Justification:
Avoid embarrassing untidiness in textual output.
Votes:
+1 (non-binding): mattiase
+1: rhuijben, breser, pburba
Modified:
subversion/branches/1.8.x/ (props changed)
subversion/branches/1.8.x/STATUS
subversion/branches/1.8.x/subversion/svn/notify.c
Propchange: subversion/branches/1.8.x/
------------------------------------------------------------------------------
Merged /subversion/trunk:r1467803
Modified: subversion/branches/1.8.x/STATUS
URL:
http://svn.apache.org/viewvc/subversion/branches/1.8.x/STATUS?rev=1468148&r1=1468147&r2=1468148&view=diff
==============================================================================
--- subversion/branches/1.8.x/STATUS (original)
+++ subversion/branches/1.8.x/STATUS Mon Apr 15 17:10:30 2013
@@ -49,14 +49,6 @@ Approved changes:
Votes:
+1: danielsh, stsp, rhuijben
- * r1467803
- Add missing linefeed in a message.
- Justification:
- Avoid embarrassing untidiness in textual output.
- Votes:
- +1 (non-binding): mattiase
- +1: rhuijben, breser, pburba
-
* r1467675
Add missing Doxygen @since marker to svn_auth_forget_credentials().
Justification:
Modified: subversion/branches/1.8.x/subversion/svn/notify.c
URL:
http://svn.apache.org/viewvc/subversion/branches/1.8.x/subversion/svn/notify.c?rev=1468148&r1=1468147&r2=1468148&view=diff
==============================================================================
--- subversion/branches/1.8.x/subversion/svn/notify.c (original)
+++ subversion/branches/1.8.x/subversion/svn/notify.c Mon Apr 15 17:10:30 2013
@@ -1050,8 +1050,9 @@ notify(void *baton, const svn_wc_notify_
break;
case svn_wc_notify_path_nonexistent:
- err = svn_cmdline_printf(pool, _("'%s' is not under version control"),
- path_local);
+ err = svn_cmdline_printf(pool, "%s\n",
+ apr_psprintf(pool, _("'%s' is not under version control"),
+ path_local));
if (err)
goto print_error;
break;