1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-06 11:50:51 -08:00

(Fbyte_code): Use size_byte.

This commit is contained in:
Richard M. Stallman 1998-01-05 17:30:19 +00:00
parent dc2a0b79d6
commit 10d0774210

View file

@ -306,7 +306,7 @@ If the third argument is incorrect, Emacs may crash.")
/* Cached address of beginning of string,
valid if BYTESTR equals STRING_SAVED. */
register unsigned char *strbeg;
int bytestr_length = XSTRING (bytestr)->size;
int bytestr_length = XSTRING (bytestr)->size_byte;
CHECK_STRING (bytestr, 0);
if (!VECTORP (vector))