Hi, On Tue, Sep 11, 2007 at 04:31:51PM -0400, Richard Stallman wrote: > --- src/xterm.c.orig 2007-05-25 12:43:35.000000000 +0000 > +++ src/xterm.c 2007-08-31 03:43:32.106444418 +0000 > > +#ifndef abs > #define abs(x) ((x) < 0 ? -(x) : (x)) > +#endif > > --- src/keyboard.c.orig 2007-04-01 21:54:54.000000000 +0000 > +++ src/keyboard.c 2007-08-31 03:43:32.291971223 +0000 > > +#ifndef abs > #define abs(x) ((x) >= 0 ? (x) : -(x)) > +#endif > > --- src/xfaces.c.orig 2007-02-14 15:47:51.000000000 +0000 > +++ src/xfaces.c 2007-09-06 18:17:56.728517424 +0000 > > - > +#ifndef abs > #define abs(X) ((X) < 0 ? -(X) : (X)) > - > +#endif Wouldn't it be better to centralize that macro? It's trivial, sure. But repetition is not beautiful. I have a patch attached, but I'm not quite sure if config.h is the place to do this.. Hannes