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/syntax.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/syntax.h')
| -rw-r--r-- | src/syntax.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/syntax.h b/src/syntax.h index 41f6662ddeb..4cbd2e2edf9 100644 --- a/src/syntax.h +++ b/src/syntax.h | |||
| @@ -330,7 +330,7 @@ if (1) \ | |||
| 330 | else \ | 330 | else \ |
| 331 | { \ | 331 | { \ |
| 332 | gl_state.b_property = 0; \ | 332 | gl_state.b_property = 0; \ |
| 333 | gl_state.e_property = 1 + XSTRING (gl_state.object)->size; \ | 333 | gl_state.e_property = 1 + SCHARS (gl_state.object); \ |
| 334 | gl_state.offset = 0; \ | 334 | gl_state.offset = 0; \ |
| 335 | } \ | 335 | } \ |
| 336 | gl_state.use_global = 0; \ | 336 | gl_state.use_global = 0; \ |