From: Gerd Moellmann Date: Thu, 25 Jan 2001 20:25:33 +0000 (+0000) Subject: * xfns.c (x_set_tool_bar_lines): Use x_clear_area instead of X-Git-Tag: emacs-pretest-21.0.96~68 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=161d30fdcbf67b23fba7adc24736737592547d1c;p=emacs.git * xfns.c (x_set_tool_bar_lines): Use x_clear_area instead of XClearArea. --- diff --git a/src/xfns.c b/src/xfns.c index 8c9ded0588e..29d131b0c53 100644 --- a/src/xfns.c +++ b/src/xfns.c @@ -2053,8 +2053,8 @@ x_set_tool_bar_lines (f, value, oldval) 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; } }