diff src/bytecode.c @ 20:859a2309aef8 r19-15b93

Import from CVS: tag r19-15b93
author cvs
date Mon, 13 Aug 2007 08:50:05 +0200
parents 0293115a14e9
children 131b0175ea99
line wrap: on
line diff
--- a/src/bytecode.c	Mon Aug 13 08:49:44 2007 +0200
+++ b/src/bytecode.c	Mon Aug 13 08:50:05 2007 +0200
@@ -258,14 +258,13 @@
 
 #define TOP (*stackp)
 
-DEFUN ("byte-code", Fbyte_code, Sbyte_code, 3, 3, 0 /*
+DEFUN ("byte-code", Fbyte_code, 3, 3, 0, /*
 Function used internally in byte-compiled code.
 The first argument is a string of byte code; the second, a vector of constants;
 the third, the maximum stack depth used in this function.
 If the third argument is incorrect, Emacs may crash.
-*/ )
-  (bytestr, vector, maxdepth)
-     Lisp_Object bytestr, vector, maxdepth;
+*/
+       (bytestr, vector, maxdepth))
 {
   /* This function can GC */
   struct gcpro gcpro1, gcpro2, gcpro3;
@@ -1219,7 +1218,7 @@
 syms_of_bytecode (void)
 {
   defsymbol (&Qbyte_code, "byte-code");
-  defsubr (&Sbyte_code);
+  DEFSUBR (Fbyte_code);
 #ifdef BYTE_CODE_METER
   defsymbol (&Qbyte_code_meter, "byte-code-meter");
 #endif