From bff36c3731cd013f248547bb049d1d3a5fb01ef1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Markus=20Fr=C3=B6schle?= Date: Mon, 29 Oct 2012 21:22:36 +0000 Subject: [PATCH] --- BaS_GNU/sources/bas_printf.c | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/BaS_GNU/sources/bas_printf.c b/BaS_GNU/sources/bas_printf.c index 9d9b500..4be9492 100644 --- a/BaS_GNU/sources/bas_printf.c +++ b/BaS_GNU/sources/bas_printf.c @@ -41,16 +41,16 @@ * The eighth/sixteenth bit of characters is used to prevent recognition, * and eventually stripped. */ -#define META 0200 -#define ASCII 0177 -# define QUOTE ((char) 0200) /* Eighth char bit used for 'ing */ -# define TRIM 0177 /* Mask to strip quote bit */ -# define UNDER 0000000 /* No extra bits to do both */ -# define BOLD 0000000 /* Bold flag */ -# define STANDOUT META /* Standout flag */ -# define LITERAL 0000000 /* Literal character flag */ -# define ATTRIBUTES 0200 /* The bits used for attributes */ -# define CHAR 0000177 /* Mask to mask out the character */ +#define META 0200 +#define ASCII 0177 +#define QUOTE ((char) 0200) /* Eighth char bit used for 'ing */ +#define TRIM 0177 /* Mask to strip quote bit */ +#define UNDER 0000000 /* No extra bits to do both */ +#define BOLD 0000000 /* Bold flag */ +#define STANDOUT META /* Standout flag */ +#define LITERAL 0000000 /* Literal character flag */ +#define ATTRIBUTES 0200 /* The bits used for attributes */ +#define CHAR 0000177 /* Mask to mask out the character */ #define INF 32766 /* should be bigger than any field to print */