diff options
| author | Eli Zaretskii | 2006-03-11 12:04:41 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2006-03-11 12:04:41 +0000 |
| commit | 005a80de11fb0efe39b4fb5ad636396a3b86d281 (patch) | |
| tree | 17c921cac09404f5673d2f1613ce06870f12cf45 /src | |
| parent | 97b5ae784da87d61fac93904f11aed356d9215f5 (diff) | |
| download | emacs-005a80de11fb0efe39b4fb5ad636396a3b86d281.tar.gz emacs-005a80de11fb0efe39b4fb5ad636396a3b86d281.zip | |
(x_draw_hollow_cursor): Subtract 1 from the last argument of XDrawRectangle.
Diffstat (limited to 'src')
| -rw-r--r-- | src/xterm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xterm.c b/src/xterm.c index 7b952e1f45f..c0941b7cbdb 100644 --- a/src/xterm.c +++ b/src/xterm.c | |||
| @@ -7178,7 +7178,7 @@ x_draw_hollow_cursor (w, row) | |||
| 7178 | 7178 | ||
| 7179 | /* Set clipping, draw the rectangle, and reset clipping again. */ | 7179 | /* Set clipping, draw the rectangle, and reset clipping again. */ |
| 7180 | x_clip_to_row (w, row, TEXT_AREA, gc); | 7180 | x_clip_to_row (w, row, TEXT_AREA, gc); |
| 7181 | XDrawRectangle (dpy, FRAME_X_WINDOW (f), gc, x, y, wd, h); | 7181 | XDrawRectangle (dpy, FRAME_X_WINDOW (f), gc, x, y, wd, h - 1); |
| 7182 | XSetClipMask (dpy, gc, None); | 7182 | XSetClipMask (dpy, gc, None); |
| 7183 | } | 7183 | } |
| 7184 | 7184 | ||