# HG changeset patch # User Gerd Moellmann # Date 980454333 0 # Node ID 65c31f59048a57468ed4916e08378a88a4556f53 # Parent f499794dc3937d55e73d4a84dc563c22e3ecc996 * xfns.c (x_set_tool_bar_lines): Use x_clear_area instead of XClearArea. diff -r f499794dc393 -r 65c31f59048a src/xfns.c --- a/src/xfns.c Thu Jan 25 20:21:01 2001 +0000 +++ b/src/xfns.c Thu Jan 25 20:25:33 2001 +0000 @@ -2053,8 +2053,8 @@ int y = nlines * CANON_Y_UNIT (f); BLOCK_INPUT; - XClearArea (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), - 0, y, width, height, False); + x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), + 0, y, width, height, False); UNBLOCK_INPUT; } }