diff options
| author | Richard M. Stallman | 1998-03-21 07:06:14 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1998-03-21 07:06:14 +0000 |
| commit | fc932ac6c7b54ac6f79222a2548707a97d3a44f4 (patch) | |
| tree | 88f9f2ff546b9d84c11515967b4bb5cc3c16d080 /src/bytecode.c | |
| parent | e7654b4a743e7c54c08629ee336e10a5f1089da6 (diff) | |
| download | emacs-fc932ac6c7b54ac6f79222a2548707a97d3a44f4.tar.gz emacs-fc932ac6c7b54ac6f79222a2548707a97d3a44f4.zip | |
Use STRING_BYTES and SET_STRING_BYTES.
Diffstat (limited to 'src/bytecode.c')
| -rw-r--r-- | src/bytecode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bytecode.c b/src/bytecode.c index 193630f025c..60e34a486fe 100644 --- a/src/bytecode.c +++ b/src/bytecode.c | |||
| @@ -306,7 +306,7 @@ If the third argument is incorrect, Emacs may crash.") | |||
| 306 | /* Cached address of beginning of string, | 306 | /* Cached address of beginning of string, |
| 307 | valid if BYTESTR equals STRING_SAVED. */ | 307 | valid if BYTESTR equals STRING_SAVED. */ |
| 308 | register unsigned char *strbeg; | 308 | register unsigned char *strbeg; |
| 309 | int bytestr_length = XSTRING (bytestr)->size_byte; | 309 | int bytestr_length = STRING_BYTES (XSTRING (bytestr)); |
| 310 | 310 | ||
| 311 | CHECK_STRING (bytestr, 0); | 311 | CHECK_STRING (bytestr, 0); |
| 312 | if (!VECTORP (vector)) | 312 | if (!VECTORP (vector)) |