From: Richard M. Stallman Date: Mon, 5 Jan 1998 17:30:19 +0000 (+0000) Subject: (Fbyte_code): Use size_byte. X-Git-Tag: emacs-20.3~2482 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=10d077421013ae6531c3ab2a074ff58c03f985c0;p=emacs.git (Fbyte_code): Use size_byte. --- diff --git a/src/bytecode.c b/src/bytecode.c index 4b909a1b3dc..b0e2ca7a8b2 100644 --- a/src/bytecode.c +++ b/src/bytecode.c @@ -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))