view scripts/plot/util/shg.m @ 26598:988118822a92 stable

shg: fix syntax error introduced in cset b785394f10d0 * shg.m: Delete extraneous parenthesis left over from copy/paste.
author Mike Miller <mtmiller@octave.org>
date Tue, 22 Jan 2019 10:49:46 -0800
parents 00f796120a6d
children 4d6d21839dfd
line wrap: on
line source

## Copyright (C) 1994-2019 John W. Eaton
##
## This file is part of Octave.
##
## Octave is free software: you can redistribute it and/or modify it
## under the terms of the GNU General Public License as published by
## the Free Software Foundation, either version 3 of the License, or
## (at your option) any later version.
##
## Octave is distributed in the hope that it will be useful, but
## WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
## GNU General Public License for more details.
##
## You should have received a copy of the GNU General Public License
## along with Octave; see the file COPYING.  If not, see
## <https://www.gnu.org/licenses/>.

## -*- texinfo -*-
## @deftypefn {} {} shg
## Show the graph window.
##
## This function makes the current figure visible, and places it on top of
## of all other plot windows.
##
## Programming Note: @code{shg} is equivalent to @code{figure (gcf)} assuming
## that a current figure exists.
## @seealso{figure, drawnow, gcf}
## @end deftypefn

## Author: jwe

function shg ()

  if (nargin != 0)
    warning ("shg: ignoring extra arguments");
  endif

  hf = get (0, "currentfigure");
  if (! isempty (hf))
    set (hf, "visible", "on");
    __show_figure__ (hf);
  endif

endfunction