summaryrefslogtreecommitdiff
path: root/src/z-term.h
diff options
context:
space:
mode:
authorBardur Arantsson <bardur@scientician.net>2014-06-26 17:52:56 +0200
committerBardur Arantsson <bardur@scientician.net>2014-06-26 17:52:56 +0200
commit33bcbd13586471c8a1a3ce89389885d7a72e50c3 (patch)
tree2f85c754893d15fad9f36f474aba22c23c3fad98 /src/z-term.h
parent6c185caed15deb5f63253921a12fdc61b6afb656 (diff)
Remove unused fields from "struct term"
Diffstat (limited to 'src/z-term.h')
-rw-r--r--src/z-term.h22
1 files changed, 0 insertions, 22 deletions
diff --git a/src/z-term.h b/src/z-term.h
index 677b7510..ae892821 100644
--- a/src/z-term.h
+++ b/src/z-term.h
@@ -65,19 +65,9 @@ struct term_win
/*
* An actual "term" structure
*
- * - Extra "user" info (used by application)
- *
* - Extra "data" info (used by implementation)
*
*
- * - Flag "user_flag"
- * An extra "user" flag (used by application)
- *
- *
- * - Flag "data_flag"
- * An extra "data" flag (used by implementation)
- *
- *
* - Flag "active_flag"
* This "term" is "active"
*
@@ -105,9 +95,6 @@ struct term_win
* - Flag "always_text"
* Use the "Term_text()" routine for invisible text
*
- * - Flag "unused_flag"
- * Reserved for future use
- *
* - Flag "never_bored"
* Never call the "TERM_XTRA_BORED" action
*
@@ -166,14 +153,8 @@ typedef struct term term;
struct term
{
- vptr user;
-
vptr data;
- bool_ user_flag;
-
- bool_ data_flag;
-
bool_ active_flag;
bool_ mapped_flag;
bool_ total_erase;
@@ -183,7 +164,6 @@ struct term
bool_ always_pict;
bool_ higher_pict;
bool_ always_text;
- bool_ unused_flag;
bool_ never_bored;
bool_ never_frosh;
@@ -191,10 +171,8 @@ struct term
char char_blank;
char *key_queue;
-
u16b key_head;
u16b key_tail;
- u16b key_xtra;
u16b key_size;
byte wid;