diff src/defun-int.h @ 3364:fac05a83b4c5

[project @ 1999-11-20 03:05:42 by jwe]
author jwe
date Sat, 20 Nov 1999 03:05:45 +0000
parents 2efa28a91e7a
children b80bbb43a1a9
line wrap: on
line diff
--- a/src/defun-int.h	Fri Nov 19 21:57:37 1999 +0000
+++ b/src/defun-int.h	Sat Nov 20 03:05:45 1999 +0000
@@ -89,13 +89,22 @@
 
 // Generate code to install name in the symbol table.  The script
 // mkdefs will create a .def file for every .cc file that uses DEFUN,
-// DEFUN_TEXT, or DEFUN_DLD.
+// or DEFUN_TEXT.
 
 #define DEFUN_INTERNAL(name, args_name, nargout_name, is_text_fcn, doc) \
   BEGIN_INSTALL_BUILTIN \
     XDEFUN_INTERNAL (name, args_name, nargout_name, is_text_fcn, doc) \
   END_INSTALL_BUILTIN
 
+// Generate code to install name in the symbol table.  The script
+// mkdefs will create a .def file for every .cc file that uses
+// DEFUN_DLD.
+
+#define DEFUN_DLD_INTERNAL(name, args_name, nargout_name, is_text_fcn, doc) \
+  BEGIN_INSTALL_BUILTIN \
+    XDEFUN_DLD_INTERNAL (name, args_name, nargout_name, is_text_fcn, doc) \
+  END_INSTALL_BUILTIN
+
 // Generate code for making another name for an existing function.
 
 #define DEFALIAS_INTERNAL(alias, name) \