diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2011-09-09 03:06:52 +0200 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2011-09-09 03:06:52 +0200 |
commit | 5e617bc2b62189768814fafd1a875e89a094d3ef (patch) | |
tree | d96d22e012035d044557abf4de0b8e30b03d61b7 /src/alloc.c | |
parent | 9b1c252e294bed3aef0d2f2fc5d1fa9f72df9ee8 (diff) | |
download | emacs-5e617bc2b62189768814fafd1a875e89a094d3ef.tar.gz |
Whitespace changes.
Diffstat (limited to 'src/alloc.c')
-rw-r--r-- | src/alloc.c | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/src/alloc.c b/src/alloc.c index 2d256800466..ad1741e308f 100644 --- a/src/alloc.c +++ b/src/alloc.c @@ -1880,7 +1880,7 @@ check_string_free_list (void) while (s != NULL) { if ((uintptr_t) s < 1024) - abort(); + abort (); s = NEXT_FREE_LISP_STRING (s); } } @@ -2531,17 +2531,17 @@ make_uninit_multibyte_string (EMACS_INT nchars, EMACS_INT nbytes) / (sizeof (struct Lisp_Float) * CHAR_BIT + 1)) #define GETMARKBIT(block,n) \ - (((block)->gcmarkbits[(n) / (sizeof(int) * CHAR_BIT)] \ - >> ((n) % (sizeof(int) * CHAR_BIT))) \ + (((block)->gcmarkbits[(n) / (sizeof (int) * CHAR_BIT)] \ + >> ((n) % (sizeof (int) * CHAR_BIT))) \ & 1) #define SETMARKBIT(block,n) \ - (block)->gcmarkbits[(n) / (sizeof(int) * CHAR_BIT)] \ - |= 1 << ((n) % (sizeof(int) * CHAR_BIT)) + (block)->gcmarkbits[(n) / (sizeof (int) * CHAR_BIT)] \ + |= 1 << ((n) % (sizeof (int) * CHAR_BIT)) #define UNSETMARKBIT(block,n) \ - (block)->gcmarkbits[(n) / (sizeof(int) * CHAR_BIT)] \ - &= ~(1 << ((n) % (sizeof(int) * CHAR_BIT))) + (block)->gcmarkbits[(n) / (sizeof (int) * CHAR_BIT)] \ + &= ~(1 << ((n) % (sizeof (int) * CHAR_BIT))) #define FLOAT_BLOCK(fptr) \ ((struct float_block *) (((uintptr_t) (fptr)) & ~(BLOCK_ALIGN - 1))) @@ -2553,7 +2553,7 @@ struct float_block { /* Place `floats' at the beginning, to ease up FLOAT_INDEX's job. */ struct Lisp_Float floats[FLOAT_BLOCK_SIZE]; - int gcmarkbits[1 + FLOAT_BLOCK_SIZE / (sizeof(int) * CHAR_BIT)]; + int gcmarkbits[1 + FLOAT_BLOCK_SIZE / (sizeof (int) * CHAR_BIT)]; struct float_block *next; }; @@ -2659,7 +2659,7 @@ struct cons_block { /* Place `conses' at the beginning, to ease up CONS_INDEX's job. */ struct Lisp_Cons conses[CONS_BLOCK_SIZE]; - int gcmarkbits[1 + CONS_BLOCK_SIZE / (sizeof(int) * CHAR_BIT)]; + int gcmarkbits[1 + CONS_BLOCK_SIZE / (sizeof (int) * CHAR_BIT)]; struct cons_block *next; }; @@ -2964,7 +2964,7 @@ allocate_hash_table (void) struct window * allocate_window (void) { - return ALLOCATE_PSEUDOVECTOR(struct window, current_matrix, PVEC_WINDOW); + return ALLOCATE_PSEUDOVECTOR (struct window, current_matrix, PVEC_WINDOW); } @@ -4159,7 +4159,7 @@ mark_maybe_pointer (void *p) break; case MEM_TYPE_BUFFER: - if (live_buffer_p (m, p) && !VECTOR_MARKED_P((struct buffer *)p)) + if (live_buffer_p (m, p) && !VECTOR_MARKED_P ((struct buffer *)p)) XSETVECTOR (obj, p); break; |