diff options
author | Ken Raeburn <raeburn@raeburn.org> | 2002-07-15 00:01:34 +0000 |
---|---|---|
committer | Ken Raeburn <raeburn@raeburn.org> | 2002-07-15 00:01:34 +0000 |
commit | d5db40779d7505244d37476b4f046641f07eea2b (patch) | |
tree | 5c8bf4dad41639287e722cb7cbdc0709e47a9e53 /src/disptab.h | |
parent | 491c2516d32fa8b9ba9422ec142c8925dd82af00 (diff) | |
download | emacs-d5db40779d7505244d37476b4f046641f07eea2b.tar.gz |
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
SCHARS, SBYTES, STRING_INTERVALS, SREF, SDATA; explicit size_byte references
left unchanged for now.
Diffstat (limited to 'src/disptab.h')
-rw-r--r-- | src/disptab.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/disptab.h b/src/disptab.h index 1fb6307a73a..526b1c4a9d3 100644 --- a/src/disptab.h +++ b/src/disptab.h @@ -90,8 +90,8 @@ extern Lisp_Object Vglyph_table; /* Assuming that GLYPH_SIMPLE_P (BASE, LEN, G) is 0, return the length and the address of the character-sequence used for outputting GLYPH G. */ -#define GLYPH_LENGTH(base,g) XSTRING (base[g])->size -#define GLYPH_STRING(base,g) XSTRING (base[g])->data +#define GLYPH_LENGTH(base,g) SCHARS (base[g]) +#define GLYPH_STRING(base,g) SDATA (base[g]) /* GLYPH for a space character. */ |