comparison src/defun.h @ 5794:1138ced03f14

[project @ 2006-05-08 20:23:04 by jwe]
author jwe
date Mon, 08 May 2006 20:23:07 +0000
parents 4c8a2e4e0717
children b559b4bcf51f
comparison
equal deleted inserted replaced
5793:395382df0d8a 5794:1138ced03f14
46 DEFUN_INTERNAL (name, args_name, nargout_name, false, doc) 46 DEFUN_INTERNAL (name, args_name, nargout_name, false, doc)
47 47
48 // This one can be used when `name' cannot be used directly (if it is 48 // This one can be used when `name' cannot be used directly (if it is
49 // already defined as a macro). In that case, name is already a 49 // already defined as a macro). In that case, name is already a
50 // quoted string, and the internal name of the function must be passed 50 // quoted string, and the internal name of the function must be passed
51 // too (the convetion is to use a prefix of "F", so "foo" becomes "Ffoo"). 51 // too (the convention is to use a prefix of "F", so "foo" becomes "Ffoo").
52 52
53 #define DEFUNX(name, fname, args_name, nargout_name, doc) \ 53 #define DEFUNX(name, fname, args_name, nargout_name, doc) \
54 DEFUNX_INTERNAL (name, fname, args_name, nargout_name, false, doc) 54 DEFUNX_INTERNAL (name, fname, args_name, nargout_name, false, doc)
55 55
56 // Define a builtin command-style function. 56 // Define a builtin command-style function.