aboutsummaryrefslogtreecommitdiffstats
path: root/src/window.h
diff options
context:
space:
mode:
authorKim F. Storm2002-03-01 22:36:09 +0000
committerKim F. Storm2002-03-01 22:36:09 +0000
commit7e913f913ffe6ea9b7699751d48caf957c267cd0 (patch)
tree83260447513fbac197cc25b767d77c3a5980d189 /src/window.h
parent922eae5667702487f0996e78a9acefb296748530 (diff)
downloademacs-7e913f913ffe6ea9b7699751d48caf957c267cd0.tar.gz
emacs-7e913f913ffe6ea9b7699751d48caf957c267cd0.zip
(struct window): New member phys_cursor_width.
Diffstat (limited to 'src/window.h')
-rw-r--r--src/window.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/window.h b/src/window.h
index aa27858c869..6ae50390bc8 100644
--- a/src/window.h
+++ b/src/window.h
@@ -232,9 +232,9 @@ struct window
232 /* Where the cursor actually is. */ 232 /* Where the cursor actually is. */
233 struct cursor_pos phys_cursor; 233 struct cursor_pos phys_cursor;
234 234
235 /* Cursor type last drawn on the window. Used for X frames; -1 235 /* Cursor type and width of last cursor drawn on the window.
236 initially. */ 236 Used for X and w32 frames; -1 initially. */
237 int phys_cursor_type; 237 int phys_cursor_type, phys_cursor_width;
238 238
239 /* This is handy for undrawing the cursor. */ 239 /* This is handy for undrawing the cursor. */
240 int phys_cursor_ascent, phys_cursor_height; 240 int phys_cursor_ascent, phys_cursor_height;