Mercurial > hg > octave-nkf
view doc/interpreter/find-docstring-files.sh @ 20511:eca5aa3225f4
imshow.m: Add support for 'parent' property (bug #45473).
* imshow.m: Add cell variable prop_val_args{:} when calling image or imagesc.
Populate prop_val_args with {"parent", hparent} when "parent" argument given
to imshow. Remove code commented out in 2015/05/1 which has not caused any
problems. Add warning that arguments "border" and "reduce" are not supported.
author | Rik <rik@octave.org> |
---|---|
date | Sun, 05 Jul 2015 13:55:56 -0700 |
parents | 741dbca67d80 |
children | c3c1fb44f9b5 |
line wrap: on
line source
#! /bin/sh if [ $# -ne 1 ]; then echo "usage: find-docstring-files TOP-SRCDIR" 1>&2 exit 1 fi ## if there is a file in the build directory tree, assume it is ## the file we are looking for. Otherwise, get the one from the ## source tree. if [ -f "../../scripts/DOCSTRINGS" ]; then echo "../../scripts/DOCSTRINGS" else echo "$1/scripts/DOCSTRINGS" fi if [ -f "../../libinterp/DOCSTRINGS" ]; then echo "../../libinterp/DOCSTRINGS" else echo "$1/libinterp/DOCSTRINGS" fi