diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2014-01-02 22:42:23 -0800 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2014-01-02 22:42:23 -0800 |
commit | ed0ca4a51a373fc23037436ccc467a982b9fcae8 (patch) | |
tree | 9ef20a60697f5cba7e392bffe767fef7bf0e7c2d /src | |
parent | d6d785112448628b0757fdae4cf82977b392f325 (diff) | |
download | emacs-ed0ca4a51a373fc23037436ccc467a982b9fcae8.tar.gz |
Whitespace fixes for recently-added code.
Diffstat (limited to 'src')
-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) */) void make_byte_code (struct Lisp_Vector *v) { - /* Don't allow the global zero_vector to become a byte code object. */ - eassert(0 < v->header.size); + /* Don't allow the global zero_vector to become a byte code object. */ + eassert (0 < v->header.size); + if (v->header.size > 1 && STRINGP (v->contents[1]) && STRING_MULTIBYTE (v->contents[1])) /* BYTECODE-STRING must have been produced by Emacs 20.2 or the |