summaryrefslogtreecommitdiff
path: root/src/main-xxx.c
diff options
context:
space:
mode:
authorBardur Arantsson <bardur@scientician.net>2014-06-26 07:25:00 +0200
committerBardur Arantsson <bardur@scientician.net>2014-06-26 07:28:53 +0200
commitec23e119e24a32f4607dfdc0f43e8726febc4043 (patch)
tree34a13ebe1eb56cdc69a08df7a7b9ce879fd6e3e0 /src/main-xxx.c
parent27b26f3940a589d8df800254b66de87f75b28758 (diff)
Remove pointless Term_user
Diffstat (limited to 'src/main-xxx.c')
-rw-r--r--src/main-xxx.c23
1 files changed, 0 insertions, 23 deletions
diff --git a/src/main-xxx.c b/src/main-xxx.c
index c80f01f0..56dc48f6 100644
--- a/src/main-xxx.c
+++ b/src/main-xxx.c
@@ -185,28 +185,6 @@ static void Term_nuke_xxx(term *t)
/*
- * Do a "user action" on the current "term"
- *
- * This function allows the visual module to do implementation defined
- * things when the user activates the "system defined command" command.
- *
- * This function is normally not used.
- *
- * In general, this function should return zero if the action is successfully
- * handled, and non-zero if the action is unknown or incorrectly handled.
- */
-static errr Term_user_xxx(int n)
-{
- term_data *td = (term_data*)(Term->data);
-
- /* XXX XXX XXX */
-
- /* Unknown */
- return (1);
-}
-
-
-/*
* Do a "special thing" to the current "term"
*
* This function must react to a large number of possible arguments, each
@@ -654,7 +632,6 @@ static void term_data_link(int i)
td->t->nuke_hook = Term_nuke_xxx;
/* Prepare the template hooks */
- td->t->user_hook = Term_user_xxx;
td->t->xtra_hook = Term_xtra_xxx;
td->t->curs_hook = Term_curs_xxx;
td->t->wipe_hook = Term_wipe_xxx;