diff options
| author | Gerd Moellmann | 2001-01-25 20:25:33 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 2001-01-25 20:25:33 +0000 |
| commit | 161d30fdcbf67b23fba7adc24736737592547d1c (patch) | |
| tree | f22ec934c58fa27894bae2681b09e99827ae860f /src | |
| parent | fba448c1825e6d9c84608452a3120359bfe06dbe (diff) | |
| download | emacs-161d30fdcbf67b23fba7adc24736737592547d1c.tar.gz emacs-161d30fdcbf67b23fba7adc24736737592547d1c.zip | |
* xfns.c (x_set_tool_bar_lines): Use x_clear_area instead of
XClearArea.
Diffstat (limited to 'src')
| -rw-r--r-- | src/xfns.c | 4 |
1 files changed, 2 insertions, 2 deletions
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) | |||
| 2053 | int y = nlines * CANON_Y_UNIT (f); | 2053 | int y = nlines * CANON_Y_UNIT (f); |
| 2054 | 2054 | ||
| 2055 | BLOCK_INPUT; | 2055 | BLOCK_INPUT; |
| 2056 | XClearArea (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), | 2056 | x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), |
| 2057 | 0, y, width, height, False); | 2057 | 0, y, width, height, False); |
| 2058 | UNBLOCK_INPUT; | 2058 | UNBLOCK_INPUT; |
| 2059 | } | 2059 | } |
| 2060 | } | 2060 | } |