This commit is contained in:
Markus Fröschle
2012-10-29 21:22:36 +00:00
parent bfe601dec9
commit 158dc435ce

View File

@@ -43,14 +43,14 @@
*/ */
#define META 0200 #define META 0200
#define ASCII 0177 #define ASCII 0177
# define QUOTE ((char) 0200) /* Eighth char bit used for 'ing */ #define QUOTE ((char) 0200) /* Eighth char bit used for 'ing */
# define TRIM 0177 /* Mask to strip quote bit */ #define TRIM 0177 /* Mask to strip quote bit */
# define UNDER 0000000 /* No extra bits to do both */ #define UNDER 0000000 /* No extra bits to do both */
# define BOLD 0000000 /* Bold flag */ #define BOLD 0000000 /* Bold flag */
# define STANDOUT META /* Standout flag */ #define STANDOUT META /* Standout flag */
# define LITERAL 0000000 /* Literal character flag */ #define LITERAL 0000000 /* Literal character flag */
# define ATTRIBUTES 0200 /* The bits used for attributes */ #define ATTRIBUTES 0200 /* The bits used for attributes */
# define CHAR 0000177 /* Mask to mask out the character */ #define CHAR 0000177 /* Mask to mask out the character */
#define INF 32766 /* should be bigger than any field to print */ #define INF 32766 /* should be bigger than any field to print */