summaryrefslogtreecommitdiff
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
commit7be0689e1ee3d387ee557757f094a3d3fda55cdb (patch)
tree1589678dfeb1eca4507942dc84cbf7cb8ecd4a85
parentd7da4a742d24c79f5ddbf835c19e0383c0e9fca4 (diff)
Remove Term_queue_chars() from z-term API
-rw-r--r--src/z-term.cc2
-rw-r--r--src/z-term.h1
2 files changed, 1 insertions, 2 deletions
diff --git a/src/z-term.cc b/src/z-term.cc
index d187a7ff..a6b304a7 100644
--- a/src/z-term.cc
+++ b/src/z-term.cc
@@ -672,7 +672,7 @@ void Term_queue_char(int x, int y, byte a, char c)
* a valid location, so the first "n" characters of "s" can all be added
* starting at (x,y) without causing any illegal operations.
*/
-void Term_queue_chars(int x, int y, int n, byte a, const char *s)
+static void Term_queue_chars(int x, int y, int n, byte a, const char *s)
{
int x1 = -1, x2 = -1;
diff --git a/src/z-term.h b/src/z-term.h
index 20512357..74ed3a7b 100644
--- a/src/z-term.h
+++ b/src/z-term.h
@@ -122,7 +122,6 @@ extern term *Term;
void Term_xtra(int n, int v);
void Term_queue_char(int x, int y, byte a, char c);
-void Term_queue_chars(int x, int y, int n, byte a, const char *s);
void Term_fresh();
void Term_set_cursor(int v);