Mercurial > hg > octave-nkf
view libinterp/find-defun-files.sh @ 18199:b7d3e1f762e1
don't include umap_xsignbit with char mapper cases (see 0d5721873d6b)
* ov-base-sparse.cc (octave_base_sparse<T>::map):
Don't include umap_xsignbit in the set of char mapper cases.
* ov-float.cc (octave_float_scalar::map): Likewise.
* ov-flt-re-mat.cc (octave_float_matrix::map): Likewise.
* ov-re-mat.cc (octave_matrix::map): Likewise.
* ov-scalar.cc (octave_scalar::map): Likewise.
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Fri, 03 Jan 2014 11:23:08 -0500 |
parents | 39096b290a2f |
children |
line wrap: on
line source
#! /bin/sh set -e SED=${SED:-sed} EGREP=${EGREP:-egrep} # Some stupid egreps don't like empty elements in alternation patterns, # so we have to repeat ourselves because some stupid egreps don't like # empty elements in alternation patterns. DEFUN_PATTERN="^[ \t]*DEF(CONSTFUN|CMD|UN|UN_DLD|UNX_DLD|UN_TEXT)[ \t]*\\(" srcdir="$1" shift for arg do if [ -f "$arg" ]; then file="$arg" else file="$srcdir/$arg" fi if [ "`$EGREP -l "$DEFUN_PATTERN" $file`" ]; then echo "$file" | $SED "s,\\$srcdir/,," | $SED 's/\.cc$/.df/; s/\.ll$/.df/; s/\.in.yy$/.df/'; fi done