Wed 13 Sep 2017 10:10:04 PM UTC, comment #6:
I think, warning_ids contains what is in the manual.
Well, sometimes it does not help.
@Kai:
your idea with grep is fine.
I tried:
find . -type f -and
! -name "*.texi" -and
! -name "*.dvi" -and
! -name "*.html" -and
! -name "*.ps" -and
! -name "*.txi"
-exec grep "Octave:load-file-in-path" {} \; -print
Result:
Octave:load-file-in-path
Octave:nested-functions-coerced
in docs only
Octave:logical-conversion
./libinterp/corefcn/errwarn.cc
./libinterp/corefcn/gripes.cc
Octave:recursive-path-search
./libinterp/corefcn/load-path.cc
Octave:nearly-singular-matrix
./liboctave/util/lo-array-gripes.cc
./liboctave/util/lo-array-errwarn.cc
Octave:sqrtm:SingularMatrix
./libinterp/corefcn/sqrtm.cc
Also for the other warnings, understood but not documented.
Octave:noninteger-range-as-index
./libinterp/octave-value/ov-range.cc
Octave:shadowed-function
./libinterp/corefcn/load-path.cc
Octave:singular-matrix
./liboctave/util/lo-array-gripes.cc
./liboctave/util/lo-array-errwarn.cc
|