diff scripts/plot/gcbf.m @ 17480:6e21e858d677

gcbf.m: Ignore unused returned argument from gcbo with '~'. * scripts/plot/gcbf.m: Ignore unused returned argument from gcbo with '~'.
author Rik <rik@octave.org>
date Wed, 25 Sep 2013 08:52:30 -0700
parents eaab03308c0b
children
line wrap: on
line diff
--- a/scripts/plot/gcbf.m
+++ b/scripts/plot/gcbf.m
@@ -30,7 +30,7 @@
 
 function fig = gcbf ()
 
-  [dummy, fig] = gcbo ();
+  [~, fig] = gcbo ();
 
 endfunction