diff options
| author | Ken Raeburn | 2002-07-16 15:09:36 +0000 |
|---|---|---|
| committer | Ken Raeburn | 2002-07-16 15:09:36 +0000 |
| commit | 674537ea645b5301c288d9b64fc7a1de48fc6e63 (patch) | |
| tree | dc3205d9656cdaa04e11c8e78263a5e95048ef7d /src/lisp.h | |
| parent | 9ee49ebc479370de4d4b45b1b1a9f911512c0d36 (diff) | |
| download | emacs-674537ea645b5301c288d9b64fc7a1de48fc6e63.tar.gz emacs-674537ea645b5301c288d9b64fc7a1de48fc6e63.zip | |
(SDATA): Produce rvalue.
Diffstat (limited to 'src/lisp.h')
| -rw-r--r-- | src/lisp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lisp.h b/src/lisp.h index 1dd66c95f50..eb15e4753b1 100644 --- a/src/lisp.h +++ b/src/lisp.h | |||
| @@ -542,7 +542,7 @@ extern Lisp_Object make_number (); | |||
| 542 | /* Convenience macros for dealing with Lisp strings. */ | 542 | /* Convenience macros for dealing with Lisp strings. */ |
| 543 | 543 | ||
| 544 | #define SREF(string, index) XSTRING (string)->data[index] | 544 | #define SREF(string, index) XSTRING (string)->data[index] |
| 545 | #define SDATA(string) XSTRING (string)->data | 545 | #define SDATA(string) (XSTRING (string)->data + 0) |
| 546 | #define SCHARS(string) (XSTRING (string)->size + 0) | 546 | #define SCHARS(string) (XSTRING (string)->size + 0) |
| 547 | #define SBYTES(string) (STRING_BYTES (XSTRING (string)) + 0) | 547 | #define SBYTES(string) (STRING_BYTES (XSTRING (string)) + 0) |
| 548 | 548 | ||