diff options
author | Kaleb Keithley <kaleb@freedesktop.org> | 2003-11-25 19:29:12 +0000 |
---|---|---|
committer | Kaleb Keithley <kaleb@freedesktop.org> | 2003-11-25 19:29:12 +0000 |
commit | 10dc4a2c37597e02c12a9df3e9dba02a73bfc11b (patch) | |
tree | 862068307dff135870c4ae58be677408c4942a39 /lisp/format.c | |
parent | 8ae60bfe8a4b233100f5128859c76239e5789f70 (diff) |
XFree86 4.3.99.16 Bring the tree up to date for the Cygwin folksxf86-4_3_99_16
Diffstat (limited to 'lisp/format.c')
-rw-r--r-- | lisp/format.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lisp/format.c b/lisp/format.c index aa593d6..5d29fc3 100644 --- a/lisp/format.c +++ b/lisp/format.c @@ -27,11 +27,11 @@ * Author: Paulo César Pereira de Andrade */ -/* $XFree86: xc/programs/xedit/lisp/format.c,v 1.28 2002/11/30 23:13:11 paulo Exp $ */ +/* $XFree86: xc/programs/xedit/lisp/format.c,v 1.30 2003/05/27 22:27:02 tsi Exp $ */ -#include "io.h" -#include "write.h" -#include "format.h" +#include "lisp/io.h" +#include "lisp/write.h" +#include "lisp/format.h" #include <ctype.h> #define MAXFMT 8 @@ -596,9 +596,9 @@ static void format_in_radix(LispObj *stream, LispObj *object, int radix, FmtArgs *args) { if (INTEGERP(object)) { - int i, check, atsign, collon, mincol, padchar, commachar, commainterval; + int i, atsign, collon, mincol, padchar, commachar, commainterval; - i = check = (radix == 0); + i = (radix == 0); atsign = args->atsign; collon = args->collon; if (radix == 0) { |