summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/macro.cc
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2011-11-11 00:51:12 +0100
committerAdam Borowski <kilobyte@angband.pl>2011-11-11 00:53:21 +0100
commit5be338836d26d62a78b9668b6c7ab08cc1cb98b2 (patch)
tree1252f6b543a1b4b87bde73acaaa9c94123aeb270 /crawl-ref/source/macro.cc
parent39aa805b401e889169479cb51daff13921e4534a (diff)
downloadcrawl-ref-5be338836d26d62a78b9668b6c7ab08cc1cb98b2.tar.gz
crawl-ref-5be338836d26d62a78b9668b6c7ab08cc1cb98b2.zip
Make a bunch of functions static, delete some unused junk.
Diffstat (limited to 'crawl-ref/source/macro.cc')
-rw-r--r--crawl-ref/source/macro.cc7
1 files changed, 0 insertions, 7 deletions
diff --git a/crawl-ref/source/macro.cc b/crawl-ref/source/macro.cc
index 63b8a91953..90789528fc 100644
--- a/crawl-ref/source/macro.cc
+++ b/crawl-ref/source/macro.cc
@@ -412,13 +412,6 @@ void macro_sendkeys_end_add_expanded(int key)
SendKeysBuffer.push_back(key);
}
-// Effectively the same as macro_sendkeys_end_add_expanded, but adding to
-// the front of the keybuffer.
-void macro_sendkeys_start_add_expanded(int key)
-{
- macro_buf_add(key, true, true);
-}
-
static void _macro_inject_sent_keys()
{
if (Buffer.empty() && !SendKeysBuffer.empty())