about summary refs log tree commit diff stats
path: root/src/HTFont.h
diff options
context:
space:
mode:
authorThomas E. Dickey <dickey@invisible-island.net>2004-10-11 00:44:26 -0400
committerThomas E. Dickey <dickey@invisible-island.net>2004-10-11 00:44:26 -0400
commitff34560f27f6cc7ba97cfc11e10973ac34735c4c (patch)
tree937595d7e6eac4873a7a0749e5c126d43d7c1c54 /src/HTFont.h
parentceb4156db8546c98875607dd91a799101b02c22f (diff)
downloadlynx-snapshots-ff34560f27f6cc7ba97cfc11e10973ac34735c4c.tar.gz
snapshot of project "lynx", label v2-8-6dev_6
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 */