From 8f6ea86a7e6d99f41e6c8e3cc21243bf82a6e3b2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Amadeusz=20S=C5=82awi=C5=84ski=20=28amade=29?= Date: Fri, 14 Jan 2011 01:21:06 +0100 Subject: occasional whitespace fix --- src/ansi.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/ansi.h b/src/ansi.h index a91ae92..9a7fad1 100644 --- a/src/ansi.h +++ b/src/ansi.h @@ -136,17 +136,17 @@ enum move_t { #define UTF8 8 -# define UCS_REPL 0xfffd /* character for illegal codes */ -# define UCS_REPL_DW 0xff1f /* character for illegal codes */ -# define UCS_HIDDEN 0xffff +#define UCS_REPL 0xfffd /* character for illegal codes */ +#define UCS_REPL_DW 0xff1f /* character for illegal codes */ +#define UCS_HIDDEN 0xffff -# define is_dw_font(f) ((f) && ((f) & 0x60) == 0) +#define is_dw_font(f) ((f) && ((f) & 0x60) == 0) -# define dw_left(ml, x, enc) ((enc == UTF8) ? \ +#define dw_left(ml, x, enc) ((enc == UTF8) ? \ (unsigned char)(ml)->font[(x) + 1] == 0xff && (unsigned char)(ml)->image[(x) + 1] == 0xff : \ ((unsigned char)(ml)->font[x] & 0x1f) != 0 && ((unsigned char)(ml)->font[x] & 0xe0) == 0 \ ) -# define dw_right(ml, x, enc) ((enc == UTF8) ? \ +#define dw_right(ml, x, enc) ((enc == UTF8) ? \ (unsigned char)(ml)->font[x] == 0xff && (unsigned char)(ml)->image[x] == 0xff : \ ((unsigned char)(ml)->font[x] & 0xe0) == 0x80 \ ) -- cgit v1.2.1