comparison libinterp/corefcn/error.cc @ 30896:c9788d7f6e65

maint: Use "fcn" as preferred abbreviation for "function" in libinterp/. * __eigs__.cc, bsxfun.cc, cellfun.cc, daspk.cc, dasrt.cc, dassl.cc, data.cc, debug.cc, error.cc, graphics.cc, graphics.in.h, gzfstream.h, ls-hdf5.cc, lsode.cc, max.cc, oct-opengl.h, quad.cc, strfns.cc, utils.cc, utils.h, variables.cc, __ode15__.cc, gzip.cc, cdef-manager.cc, ov-fcn-handle.cc, ov-java.cc, ov-usr-fcn.cc, bp-table.cc, bp-table.h, lex.h, lex.ll, oct-parse.yy, pt-eval.cc: Replace "func", "fun", "fn" in documentation and variable names with "fcn".
author Rik <rik@octave.org>
date Tue, 05 Apr 2022 08:33:58 -0700
parents 32d2b6604a9f
children 670a0d878af1
comparison
equal deleted inserted replaced
30895:360d330cc30e 30896:c9788d7f6e65
123 va_start (args, fmt); 123 va_start (args, fmt);
124 error_1 ("", fmt, args); 124 error_1 ("", fmt, args);
125 va_end (args); 125 va_end (args);
126 } 126 }
127 127
128 typedef void (*error_fun)(const char *, const char *, ...); 128 typedef void (*error_fcn)(const char *, const char *, ...);
129 129
130 static std::string 130 static std::string
131 handle_message (error_fun f, const char *id, const char *msg, 131 handle_message (error_fcn f, const char *id, const char *msg,
132 const octave_value_list& args, bool have_fmt) 132 const octave_value_list& args, bool have_fmt)
133 { 133 {
134 std::string retval; 134 std::string retval;
135 135
136 std::string tmpstr; 136 std::string tmpstr;