diff options
| author | Ken Raeburn | 2002-07-15 00:01:34 +0000 |
|---|---|---|
| committer | Ken Raeburn | 2002-07-15 00:01:34 +0000 |
| commit | d5db40779d7505244d37476b4f046641f07eea2b (patch) | |
| tree | 5c8bf4dad41639287e722cb7cbdc0709e47a9e53 /src/disptab.h | |
| parent | 491c2516d32fa8b9ba9422ec142c8925dd82af00 (diff) | |
| download | emacs-d5db40779d7505244d37476b4f046641f07eea2b.tar.gz emacs-d5db40779d7505244d37476b4f046641f07eea2b.zip | |
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; | |||
| 90 | /* Assuming that GLYPH_SIMPLE_P (BASE, LEN, G) is 0, | 90 | /* Assuming that GLYPH_SIMPLE_P (BASE, LEN, G) is 0, |
| 91 | return the length and the address of the character-sequence | 91 | return the length and the address of the character-sequence |
| 92 | used for outputting GLYPH G. */ | 92 | used for outputting GLYPH G. */ |
| 93 | #define GLYPH_LENGTH(base,g) XSTRING (base[g])->size | 93 | #define GLYPH_LENGTH(base,g) SCHARS (base[g]) |
| 94 | #define GLYPH_STRING(base,g) XSTRING (base[g])->data | 94 | #define GLYPH_STRING(base,g) SDATA (base[g]) |
| 95 | 95 | ||
| 96 | /* GLYPH for a space character. */ | 96 | /* GLYPH for a space character. */ |
| 97 | 97 | ||