diff options
| author | Stefan Monnier | 2003-04-11 23:17:42 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2003-04-11 23:17:42 +0000 |
| commit | f3ce1df88f6dd652e8cfc64b82bd28145e0a8064 (patch) | |
| tree | 2314ba6011337fc14dea4badfc8c52d499a216d1 /src/editfns.c | |
| parent | b6cb37aeac41b8e447eaed031c6c705433cd7c71 (diff) | |
| download | emacs-f3ce1df88f6dd652e8cfc64b82bd28145e0a8064.tar.gz emacs-f3ce1df88f6dd652e8cfc64b82bd28145e0a8064.zip | |
(Fformat): Lisp_Object/int mixup.
(format2): Remove unused var numargs.
Diffstat (limited to 'src/editfns.c')
| -rw-r--r-- | src/editfns.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/editfns.c b/src/editfns.c index f436ee15717..a08864f8678 100644 --- a/src/editfns.c +++ b/src/editfns.c | |||
| @@ -3674,7 +3674,8 @@ usage: (format STRING &rest OBJECTS) */) | |||
| 3674 | and ARGN is the number of the next arg we will come to. */ | 3674 | and ARGN is the number of the next arg we will come to. */ |
| 3675 | for (list = props; CONSP (list); list = XCDR (list)) | 3675 | for (list = props; CONSP (list); list = XCDR (list)) |
| 3676 | { | 3676 | { |
| 3677 | Lisp_Object item, pos; | 3677 | Lisp_Object item; |
| 3678 | int pos; | ||
| 3678 | 3679 | ||
| 3679 | item = XCAR (list); | 3680 | item = XCAR (list); |
| 3680 | 3681 | ||
| @@ -3753,7 +3754,6 @@ format2 (string1, arg0, arg1) | |||
| 3753 | Lisp_Object arg0, arg1; | 3754 | Lisp_Object arg0, arg1; |
| 3754 | { | 3755 | { |
| 3755 | Lisp_Object args[3]; | 3756 | Lisp_Object args[3]; |
| 3756 | int numargs; | ||
| 3757 | args[0] = build_string (string1); | 3757 | args[0] = build_string (string1); |
| 3758 | args[1] = arg0; | 3758 | args[1] = arg0; |
| 3759 | args[2] = arg1; | 3759 | args[2] = arg1; |