diff src/editfns.c @ 50555:37d227b879ad

(Fformat): Lisp_Object/int mixup. (format2): Remove unused var numargs.
author Stefan Monnier <monnier@iro.umontreal.ca>
date Fri, 11 Apr 2003 23:17:42 +0000
parents 0abd4951c0fb
children 2a57a6e6b390
line wrap: on
line diff
--- a/src/editfns.c	Fri Apr 11 22:40:58 2003 +0000
+++ b/src/editfns.c	Fri Apr 11 23:17:42 2003 +0000
@@ -3674,7 +3674,8 @@
 	     and ARGN is the number of the next arg we will come to.  */
 	  for (list = props; CONSP (list); list = XCDR (list))
 	    {
-	      Lisp_Object item, pos;
+	      Lisp_Object item;
+	      int pos;
 
 	      item = XCAR (list);
 
@@ -3753,7 +3754,6 @@
      Lisp_Object arg0, arg1;
 {
   Lisp_Object args[3];
-  int numargs;
   args[0] = build_string (string1);
   args[1] = arg0;
   args[2] = arg1;