summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBardur Arantsson <bardur@scientician.net>2010-01-15 19:51:41 +0100
committerBardur Arantsson <bardur@scientician.net>2010-01-17 10:02:09 +0100
commit6cdfd6f71a115842f39bb2d7f38d4b3f19beb9b7 (patch)
tree8d02b9e2d0499e5713146b2d69a3043e49ceebc0
parent2806578dcae47b46b85c94992118d25112a15284 (diff)
Remove dead code.
-rw-r--r--src/init1.c26
1 files changed, 0 insertions, 26 deletions
diff --git a/src/init1.c b/src/init1.c
index 56fc6472..5eb5815e 100644
--- a/src/init1.c
+++ b/src/init1.c
@@ -6676,32 +6676,6 @@ errr init_e_info_txt(FILE *fp, char *buf)
if (!e_ptr) return (3);
-#if 0
-
- /* Process 'D' for "Description" */
- if (buf[0] == 'D')
- {
- /* Acquire the text */
- s = buf + 2;
-
- /* Hack -- Verify space */
- if (e_head->text_size + strlen(s) + 8 > fake_text_size) return (7);
-
- /* Advance and Save the text index */
- if (!e_ptr->text) e_ptr->text = ++e_head->text_size;
-
- /* Append chars to the name */
- strcpy(e_text + e_head->text_size, s);
-
- /* Advance the index */
- e_head->text_size += strlen(s);
-
- /* Next... */
- continue;
- }
-
-#endif
-
/* Process 'T' for "Tval/Sval" (up to 5 lines) */
if (buf[0] == 'T')
{