summaryrefslogtreecommitdiff
path: root/src/disptab.h
diff options
context:
space:
mode:
authorKarl Heuer <kwzh@gnu.org>1994-09-27 03:15:02 +0000
committerKarl Heuer <kwzh@gnu.org>1994-09-27 03:15:02 +0000
commit91cb661940475ffd7ade95dd5a3331a5f612d2d2 (patch)
tree7a684170032c9e740574e849170d9bc1ed7627cb /src/disptab.h
parent0b94eaf121dd4172a30abbfafe6e94c540b1ea69 (diff)
downloademacs-91cb661940475ffd7ade95dd5a3331a5f612d2d2.tar.gz
(GLYPH_TABLE_LENGTH, GLYPH_TABLE_BASE, GLYPH_SIMPLE_P, GLYPH_ALIAS_P): Use
type test macros.
Diffstat (limited to 'src/disptab.h')
-rw-r--r--src/disptab.h12
1 files changed, 4 insertions, 8 deletions
diff --git a/src/disptab.h b/src/disptab.h
index d22e52034c4..206e3c78c70 100644
--- a/src/disptab.h
+++ b/src/disptab.h
@@ -40,25 +40,21 @@ extern Lisp_Object Vglyph_table;
/* Return the current length of the GLYPH table,
or 0 if the table isn't currently valid. */
#define GLYPH_TABLE_LENGTH \
- ((XTYPE (Vglyph_table) == Lisp_Vector) \
- ? XVECTOR (Vglyph_table)->size : 0)
+ ((VECTORP (Vglyph_table)) ? XVECTOR (Vglyph_table)->size : 0)
/* Return the current base (for indexing) of the GLYPH table,
or 0 if the table isn't currently valid. */
#define GLYPH_TABLE_BASE \
- ((XTYPE (Vglyph_table) == Lisp_Vector) \
- ? XVECTOR (Vglyph_table)->contents : 0)
+ ((VECTORP (Vglyph_table)) ? XVECTOR (Vglyph_table)->contents : 0)
/* Given BASE and LEN returned by the two previous macros,
return nonzero if the GLYPH code G should be output as a single
character with code G. Return zero if G has a string in the table. */
-#define GLYPH_SIMPLE_P(base,len,g) \
- ((g) >= (len) || XTYPE (base[g]) != Lisp_String)
+#define GLYPH_SIMPLE_P(base,len,g) ((g) >= (len) || !STRINGP (base[g]))
/* Given BASE and LEN returned by the two previous macros,
return nonzero if GLYPH code G is aliased to a different code. */
-#define GLYPH_ALIAS_P(base,len,g) \
- ((g) < (len) && XTYPE (base[g]) == Lisp_Int)
+#define GLYPH_ALIAS_P(base,len,g) ((g) < (len) && INTEGERP (base[g]))
/* Assuming that GLYPH_SIMPLE_P (BASE, LEN, G) is 1,
return the alias for G. */