]> code.delx.au - gnu-emacs/commitdiff
(Fformat): Lisp_Object/int mixup.
authorStefan Monnier <monnier@iro.umontreal.ca>
Fri, 11 Apr 2003 23:17:42 +0000 (23:17 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Fri, 11 Apr 2003 23:17:42 +0000 (23:17 +0000)
(format2): Remove unused var numargs.

src/editfns.c

index f436ee15717016ff80b5df99b033b81f487c986d..a08864f8678d433979982f404b849d8781f724c6 100644 (file)
@@ -3674,7 +3674,8 @@ usage: (format STRING &rest OBJECTS)  */)
             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 @@ format2 (string1, arg0, arg1)
      Lisp_Object arg0, arg1;
 {
   Lisp_Object args[3];
-  int numargs;
   args[0] = build_string (string1);
   args[1] = arg0;
   args[2] = arg1;