cvsuser 03/10/16 14:39:37
Modified: . mmd.c
include/parrot mmd.h
docs mmd.pod
Log:
Change mmd_dispatch_numval to mmd_dispatch_floatval
Revision Changes Path
1.17 +2 -2 parrot/mmd.c
Index: mmd.c
===================================================================
RCS file: /cvs/public/parrot/mmd.c,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -w -r1.16 -r1.17
--- mmd.c 7 Oct 2003 12:37:24 -0000 1.16
+++ mmd.c 16 Oct 2003 21:39:32 -0000 1.17
@@ -1,7 +1,7 @@
/* mmd.c
* Copyright: 2003 The Perl Foundation. All Rights Reserved.
* CVS Info
- * $Id: mmd.c,v 1.16 2003/10/07 12:37:24 dan Exp $
+ * $Id: mmd.c,v 1.17 2003/10/16 21:39:32 scog Exp $
* Overview:
* Multimethod dispatch handling for parrot
* Data Structure and Algorithms:
@@ -67,7 +67,7 @@
}
FLOATVAL
-mmd_dispatch_numval(struct Parrot_Interp *interpreter,
+mmd_dispatch_floatval(struct Parrot_Interp *interpreter,
PMC *left, PMC *right, INTVAL function)
{
1.8 +2 -2 parrot/include/parrot/mmd.h
Index: mmd.h
===================================================================
RCS file: /cvs/public/parrot/include/parrot/mmd.h,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -w -r1.7 -r1.8
--- mmd.h 5 Oct 2003 01:06:45 -0000 1.7
+++ mmd.h 16 Oct 2003 21:39:34 -0000 1.8
@@ -1,7 +1,7 @@
/* mmd.h
* Copyright: 2003 The Perl Foundation. All Rights Reserved.
* CVS Info
- * $Id: mmd.h,v 1.7 2003/10/05 01:06:45 dan Exp $
+ * $Id: mmd.h,v 1.8 2003/10/16 21:39:34 scog Exp $
* Overview:
* This is the api header for the mmd subsystem
* Data Structure and Algorithms:
@@ -16,7 +16,7 @@
void mmd_dispatch_pmc(struct Parrot_Interp *, PMC *, PMC *, PMC *, INTVAL);
STRING *mmd_dispatch_string(struct Parrot_Interp *, PMC *, PMC *, INTVAL);
INTVAL mmd_dispatch_intval(struct Parrot_Interp *, PMC *, PMC *, INTVAL);
-FLOATVAL mmd_dispatch_numval(struct Parrot_Interp *, PMC *, PMC *, INTVAL);
+FLOATVAL mmd_dispatch_floatval(struct Parrot_Interp *, PMC *, PMC *, INTVAL);
void mmd_add_by_class(struct Parrot_Interp *, INTVAL, STRING *, STRING *,
funcptr_t);
void mmd_register(struct Parrot_Interp *, INTVAL, INTVAL, INTVAL, funcptr_t);
1.3 +1 -1 parrot/docs/mmd.pod
Index: mmd.pod
===================================================================
RCS file: /cvs/public/parrot/docs/mmd.pod,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -w -r1.2 -r1.3
--- mmd.pod 16 Oct 2003 19:59:53 -0000 1.2
+++ mmd.pod 16 Oct 2003 21:39:37 -0000 1.3
@@ -82,7 +82,7 @@
Like C<mmd_dispatch_string>, only it returns an INTVAL.
-=item FLOATVAL mmd_dispatch_numval(interp, left, right, func_num)
+=item FLOATVAL mmd_dispatch_floatval(interp, left, right, func_num)
Like C<mmd_dispatch_string>, only it returns a FLOATVAL.