rev 205 - trunk/include/prothon
SVN User <[email protected]>
| Newsgroups | gmane.comp.lang.prothon.cvs |
|---|---|
| Message-ID | <[email protected]> |
Author: bcollins
Date: 2004-03-30 00:04:01 -0500 (Tue, 30 Mar 2004)
New Revision: 205
Modified:
trunk/include/prothon/prothon.h
Log:
Remove line continuation.
Modified: trunk/include/prothon/prothon.h
===================================================================
--- trunk/include/prothon/prothon.h 2004-03-30 04:58:06 UTC (rev 204)
+++ trunk/include/prothon/prothon.h 2004-03-30 05:04:01 UTC (rev 205)
@@ -730,14 +730,13 @@
// on every call.
// see Int.c for example of usage
#define DEF(slf, func, fparam_list) \
- static obj_p slf##func(isp ist, obj_p self, int pcnt, obj_p* parms, obj_p dlocals); \
- static void slf##func##init(void) { \
- set_attr(ist, slf##_OBJ, sym(ist, #func), \
- new_func_obj(ist, slf##func, fparam_list)); \
- } \
- PR_PLACE_IN_SECTION(static mod_initcall_t,slf##func##init_ptr, \
- "._objinit_" #slf) = slf##func##init; \
- static obj_p slf##func(isp ist, obj_p self, int pcnt, obj_p* parms, obj_p dlocals)
+static obj_p slf##func(isp ist, obj_p self, int pcnt, obj_p* parms, obj_p dlocals); \
+static void slf##func##init(void) { \
+ set_attr(ist, slf##_OBJ, sym(ist, #func), \
+ new_func_obj(ist, slf##func, fparam_list)); \
+} \
+PR_PLACE_IN_SECTION(static mod_initcall_t,slf##func##init_ptr, "._objinit_" #slf) = slf##func##init; \
+static obj_p slf##func(isp ist, obj_p self, int pcnt, obj_p* parms, obj_p dlocals)
// FORM_RPARAM: convenience macro for single formal right parameter