changeset 17491: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 bdb237c7507c
children 4f1d827e1302
files scripts/plot/gcbf.m
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
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