Mercurial > hg > octave-nkf
view doc/interpreter/find-docstring-files.sh @ 17818:f1b59ef34eda
attempt to avoid setting persistent state on i/o streams (bug #40396)
* utils.h, utils.cc (octave_preserve_stream_state): New class.
* debug.cc, pr-output.cc, variables.cc, ov-base-sparse.cc: Use it to
save and restore stream flags, precision, field width, and fill
character.
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Thu, 31 Oct 2013 17:26:04 -0400 |
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