diff src/md5.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 56c54cf7c5b6
line wrap: on
line diff
--- a/src/md5.c	Mon Aug 13 08:49:44 2007 +0200
+++ b/src/md5.c	Mon Aug 13 08:50:05 2007 +0200
@@ -365,14 +365,13 @@
    from their internal representation, and thus their MD5 hash would
    be different. */
      
-DEFUN ("md5", Fmd5, Smd5, 1, 3, 0 /*
+DEFUN ("md5", Fmd5, 1, 3, 0, /*
 Return the MD5 (a secure message digest algorithm) of an object.
 OBJECT is either a string or a buffer.
 Optional arguments START and END denote buffer positions for computing the
 hash of a portion of OBJECT.
-*/ )
-       (object, start, end)
-       Lisp_Object object, start, end;
+*/
+       (object, start, end))
 {
   MD_CTX context;
   unsigned char digest[16];
@@ -422,7 +421,7 @@
 void
 syms_of_md5 (void)
 {
-  defsubr (&Smd5);
+  DEFSUBR (Fmd5);
   defsymbol (&Qmd5, "md5");
 }