Mercurial > hg > octave-nkf
diff src/defun-dld.h @ 8746:5dd06f19e9be
handle commands in the lexer
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Sun, 15 Feb 2009 23:49:15 -0500 |
parents | 6a7db240b3a3 |
children | eb63fbe60fab |
line wrap: on
line diff
--- a/src/defun-dld.h +++ b/src/defun-dld.h @@ -43,7 +43,7 @@ #if defined (MAKE_BUILTINS) #define DEFUN_DLD(name, args_name, nargout_name, doc) \ - DEFUN_DLD_INTERNAL (name, args_name, nargout_name, false, doc) + DEFUN_DLD_INTERNAL (name, args_name, nargout_name, doc) // This one can be used when `name' cannot be used directly (if it is // already defined as a macro). In that case, name is already a @@ -53,7 +53,7 @@ // (the convention is to use a prefix of "G", so "foo" becomes "Gfoo"). #define DEFUNX_DLD(name, fname, gname, args_name, nargout_name, doc) \ - DEFUNX_DLD_INTERNAL (name, fname, args_name, nargout_name, false, doc) + DEFUNX_DLD_INTERNAL (name, fname, args_name, nargout_name, doc) #else