diff options
Diffstat (limited to 'src/alloc.c')
| -rw-r--r-- | src/alloc.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/alloc.c b/src/alloc.c index 868ea495475..7f0a74ca834 100644 --- a/src/alloc.c +++ b/src/alloc.c | |||
| @@ -3214,8 +3214,9 @@ usage: (vector &rest OBJECTS) */) | |||
| 3214 | void | 3214 | void |
| 3215 | make_byte_code (struct Lisp_Vector *v) | 3215 | make_byte_code (struct Lisp_Vector *v) |
| 3216 | { | 3216 | { |
| 3217 | /* Don't allow the global zero_vector to become a byte code object. */ | 3217 | /* Don't allow the global zero_vector to become a byte code object. */ |
| 3218 | eassert(0 < v->header.size); | 3218 | eassert (0 < v->header.size); |
| 3219 | |||
| 3219 | if (v->header.size > 1 && STRINGP (v->contents[1]) | 3220 | if (v->header.size > 1 && STRINGP (v->contents[1]) |
| 3220 | && STRING_MULTIBYTE (v->contents[1])) | 3221 | && STRING_MULTIBYTE (v->contents[1])) |
| 3221 | /* BYTECODE-STRING must have been produced by Emacs 20.2 or the | 3222 | /* BYTECODE-STRING must have been produced by Emacs 20.2 or the |