comparison build-aux/mk-builtins.sh @ 22198:f6181638f6c5

search docstrings file for built-in and dld function help text (bug #48554) Load help text as needed from the built-in docstrings file for built-in and dynamically loaded .oct file functions. * help.h, help.cc (install_built_in_docstrings): Delete. (raw_help_from_docstrings_file): New static function. (raw_help): Call raw_help_from_docstrings_file if help text is not found or if it is marked as external. * mk-builtins.sh: Don't emit call to install_built_in_docstrings.
author John W. Eaton <jwe@octave.org>
date Tue, 02 Aug 2016 03:10:51 -0400
parents 6119019d42f6
children bac0d6f07a3e
comparison
equal deleted inserted replaced
22197:e43d83253e28 22198:f6181638f6c5
212 fcn=`echo "$arg" | $SED 's,.*/,,; s/\.\(cc\|cpp\|in\.yy\|ll\)$//; s/-/_/g;'` 212 fcn=`echo "$arg" | $SED 's,.*/,,; s/\.\(cc\|cpp\|in\.yy\|ll\)$//; s/-/_/g;'`
213 echo " install_${fcn}_fcns ();" 213 echo " install_${fcn}_fcns ();"
214 done 214 done
215 215
216 cat << \EOF 216 cat << \EOF
217
218 install_built_in_docstrings ();
219 } 217 }
220
221 EOF 218 EOF
222 219
223 fi 220 fi
224 221
225 exit 0 222 exit 0