changeset 22218:6bb0f32d22a5

axis.m: Clean up formatting in %!error tests. * axis.m: Clean up formatting in %!error tests.
author Rik <rik@octave.org>
date Sun, 07 Aug 2016 17:53:43 -0700
parents 3ac380d46d54
children 6f1887b237d5
files scripts/plot/appearance/axis.m
diffstat 1 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/scripts/plot/appearance/axis.m	Sun Aug 07 19:39:40 2016 +0100
+++ b/scripts/plot/appearance/axis.m	Sun Aug 07 17:53:43 2016 -0700
@@ -645,16 +645,16 @@
 
 ## Even on errors, axis can display a figure.
 
-%!error<LIMITS vector must have .* elements>
-%! hf= figure ("visible", "off");
+%!error <LIMITS vector must have .* elements>
+%! hf = figure ("visible", "off");
 %! unwind_protect
 %!   axis (1:5)
 %! unwind_protect_cleanup
 %!   close (hf);
 %! end_unwind_protect
 
-%!error<expecting no args, or a numeric vector with .* elements>
-%! hf= figure ("visible", "off");
+%!error <expecting no args, or a numeric vector with .* elements>
+%! hf = figure ("visible", "off");
 %! unwind_protect
 %!   axis ({1,2})
 %! unwind_protect_cleanup