aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKim F. Storm <[email protected]>2006-08-28 12:03:22 +0000
committerKim F. Storm <[email protected]>2006-08-28 12:03:22 +0000
commit62d8e3d40e49e7da32c520b79b115878e910e89f (patch)
tree74cacac2c9920f6e91480c7fabd2ae23b7392ddf /src
parent62d108d4b9bc9008063f71c608b359c7bc1bf3fa (diff)
(get_window_cursor_type) [!HAVE_WINDOW_SYSTEM]:
Don't attempt to replace cursor on image glyphs.
Diffstat (limited to 'src')
-rw-r--r--src/xdisp.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/xdisp.c b/src/xdisp.c
index 87fa20fc06..762b6937b7 100644
--- a/src/xdisp.c
+++ b/src/xdisp.c
@@ -21213,6 +21213,7 @@ get_window_cursor_type (w, glyph, width, active_cursor)
/* Use normal cursor if not blinked off. */
if (!w->cursor_off_p)
{
+#ifdef HAVE_WINDOW_SYSTEM
if (glyph != NULL && glyph->type == IMAGE_GLYPH)
{
if (cursor_type == FILLED_BOX_CURSOR)
@@ -21238,6 +21239,7 @@ get_window_cursor_type (w, glyph, width, active_cursor)
cursor_type = HOLLOW_BOX_CURSOR;
}
}
+#endif
return cursor_type;
}