# HG changeset patch # User Rik # Date 1380124350 25200 # Node ID 6e21e858d677775c3c32b6202ca61db4799cd3c7 # Parent bdb237c7507ccbe1b602ce2a635712bb3917f977 gcbf.m: Ignore unused returned argument from gcbo with '~'. * scripts/plot/gcbf.m: Ignore unused returned argument from gcbo with '~'. diff --git a/scripts/plot/gcbf.m b/scripts/plot/gcbf.m --- a/scripts/plot/gcbf.m +++ b/scripts/plot/gcbf.m @@ -30,7 +30,7 @@ function fig = gcbf () - [dummy, fig] = gcbo (); + [~, fig] = gcbo (); endfunction