diff options
author | Kim F. Storm <storm@cua.dk> | 2004-03-01 23:56:20 +0000 |
---|---|---|
committer | Kim F. Storm <storm@cua.dk> | 2004-03-01 23:56:20 +0000 |
commit | 4789e691f89f13bee32c4ab0b984781a87ad25c1 (patch) | |
tree | 29d3f9b7bf94f5d08f3312030346a698f1461f36 | |
parent | 351b5434f9c4a242fdc5494ee8d0128f5baa4120 (diff) | |
download | emacs-4789e691f89f13bee32c4ab0b984781a87ad25c1.tar.gz |
(struct window): New member overlay_arrow_bitmap.
-rw-r--r-- | src/window.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/window.h b/src/window.h index 0a4bdb6e891..c665e9921c6 100644 --- a/src/window.h +++ b/src/window.h @@ -254,6 +254,9 @@ struct window /* This is handy for undrawing the cursor. */ int phys_cursor_ascent, phys_cursor_height; + /* Alternate overlay-arrow-bitmap in this window. */ + int overlay_arrow_bitmap; + /* Non-zero means the cursor is currently displayed. This can be set to zero by functions overpainting the cursor image. */ unsigned phys_cursor_on_p : 1; |