diff options
| author | Paul Eggert | 2014-01-02 22:42:23 -0800 |
|---|---|---|
| committer | Paul Eggert | 2014-01-02 22:42:23 -0800 |
| commit | ed0ca4a51a373fc23037436ccc467a982b9fcae8 (patch) | |
| tree | 9ef20a60697f5cba7e392bffe767fef7bf0e7c2d /src/alloc.c | |
| parent | d6d785112448628b0757fdae4cf82977b392f325 (diff) | |
| download | emacs-ed0ca4a51a373fc23037436ccc467a982b9fcae8.tar.gz emacs-ed0ca4a51a373fc23037436ccc467a982b9fcae8.zip | |
Whitespace fixes for recently-added code.
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 |