From caecb91c581d4ec0fc008a35005d8009f43087ee Mon Sep 17 00:00:00 2001 From: Stefan Monnier Date: Thu, 20 Mar 2014 10:09:37 -0400 Subject: * src/frame.h (SET_FRAME_VISIBLE): Keep frame_garbaged up to date. * src/xterm.c (handle_one_xevent) : Don't garbage the frame. * src/frame.c (frame_garbaged): Make "docstring" more precise. --- src/alloc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/alloc.c') diff --git a/src/alloc.c b/src/alloc.c index 7c671e25cfc..62c3beec1d2 100644 --- a/src/alloc.c +++ b/src/alloc.c @@ -1138,8 +1138,8 @@ lisp_align_malloc (size_t nbytes, enum mem_type type) } abase = ABLOCK_ABASE (free_ablock); - ABLOCKS_BUSY (abase) = - (struct ablocks *) (2 + (intptr_t) ABLOCKS_BUSY (abase)); + ABLOCKS_BUSY (abase) + = (struct ablocks *) (2 + (intptr_t) ABLOCKS_BUSY (abase)); val = free_ablock; free_ablock = free_ablock->x.next_free; -- cgit v1.2.1