about summary refs log tree commit diff stats
path: root/src/HTFont.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/HTFont.h')
-rw-r--r--src/HTFont.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/HTFont.h b/src/HTFont.h
index 192b0845..90c2b9ec 100644
--- a/src/HTFont.h
+++ b/src/HTFont.h
@@ -40,9 +40,11 @@ typedef long int HTMLFont;	/* For now */
 #define LY_SOFT_NEWLINE		((char)8)
 
 #ifdef EBCDIC
-#define IsSpecialAttrChar(a)  (((a) > '\002') && ((a) <= '\011') && ((a)!='\t'))
+#define IsSpecialAttrChar(a)	(((a) > '\002') && ((a) <= '\011') && ((a)!='\t'))
 #else
-#define IsSpecialAttrChar(a)  (((a) > '\002') && ((a) <= '\010'))
+#define IsSpecialAttrChar(a)	(((a) > '\002') && ((a) <= '\010'))
 #endif
 
+#define IsNormalChar(a)		((a) != '\0' && !IsSpecialAttrChar(a))
+
 #endif /* HTFONT_H */