summaryrefslogtreecommitdiff
path: root/src/main-x11.c
diff options
context:
space:
mode:
authorBardur Arantsson <bardur@scientician.net>2019-02-15 19:20:25 +0100
committerBardur Arantsson <bardur@scientician.net>2019-02-15 19:20:25 +0100
commit0ccfeea985d21a6fa84ede7aaa461b9075ca0aa6 (patch)
tree066c6402715dc5b12a8e4f0f8757060493440289 /src/main-x11.c
parent8e4e1e5784fc476f25e2fa418773926d4df7a46a (diff)
Move Term_queue_space() to z-term.c
This means we can avoid accessing "private" members of Term.
Diffstat (limited to 'src/main-x11.c')
-rw-r--r--src/main-x11.c17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/main-x11.c b/src/main-x11.c
index 6117c840..effb67dc 100644
--- a/src/main-x11.c
+++ b/src/main-x11.c
@@ -529,23 +529,6 @@ int x_io_error_handler(Display *d)
}
/*
- * Calculate how much space there is in the key queue for the current term.
- */
-int Term_queue_space(void)
-{
- /* Find the gap if the tail is before the head. */
- int space = Term->key_tail - Term->key_head;
-
- /* Otherwise, add in the extra for looping. */
- if (space <= 0) space = Term->key_size - space;
-
- /* The last space is never used as that would be interpreted as leaving
- * no pending keypresses. */
- return space -1;
-}
-
-
-/*
* Add a series of keypresses to the "queue".
*
* Return any errors generated by Term_keypress() in doing so, or SUCCESS