changeset 11437:6bfb286a0efa

Add newline to demo error reporting for better formatting.
author Rik <octave@nomad.inbox5.com>
date Tue, 04 Jan 2011 10:57:24 -0800
parents e151e23f73bc
children 9e8497537319
files scripts/ChangeLog scripts/testfun/demo.m
diffstat 2 files changed, 5 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/scripts/ChangeLog	Mon Jan 03 21:23:08 2011 -0800
+++ b/scripts/ChangeLog	Tue Jan 04 10:57:24 2011 -0800
@@ -1,3 +1,7 @@
+2011-01-04  Rik  <octave@nomad.inbox5.com>
+
+	* testfun/demo.m: Add newline to error output for better formatting.
+
 2011-01-03  Rik  <octave@nomad.inbox5.com>
 
 	* statistics/base/center.m, statistics/base/corrcoef.m,
--- a/scripts/testfun/demo.m	Mon Jan 03 21:23:08 2011 -0800
+++ b/scripts/testfun/demo.m	Tue Jan 04 10:57:24 2011 -0800
@@ -120,7 +120,7 @@
       __demo__;
     catch
       ## Let the programmer know which demo failed.
-      printf ("%s example %d: failed\n%s", name, doidx(i), __error_text__);
+      printf ("%s example %d: failed\n%s\n", name, doidx(i), __error_text__);
     end_try_catch
     clear __demo__;
   endfor