summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBardur Arantsson <bardur@scientician.net>2013-06-29 13:43:40 +0200
committerBardur Arantsson <bardur@scientician.net>2013-06-29 13:43:58 +0200
commit820480f8e22a0f881446542c173e9bd97c0665d6 (patch)
tree71065e21860c7eecc3b37c5f6e9f36cad39eeb49
parent966ae460fcde74c5e33782c829b732c9bd4c2821 (diff)
Remove unused other_query_flag option
-rw-r--r--lib/help/option.txt3
-rw-r--r--lib/mods/theme/help/option.txt3
-rw-r--r--lib/mods/theme/user/all.prf3
-rw-r--r--src/externs.h1
-rw-r--r--src/tables.c3
-rw-r--r--src/variable.c1
6 files changed, 0 insertions, 14 deletions
diff --git a/lib/help/option.txt b/lib/help/option.txt
index 4c779254..53121769 100644
--- a/lib/help/option.txt
+++ b/lib/help/option.txt
@@ -92,9 +92,6 @@ off at will during the course of the game.
(useful for monster farming). Allows most keys to mean "no" to any
"[y/n]" prompt.
-#####GPrompt for various information [other_query_flag]
- No longer used.
-
#####GPrompt before picking things up [carry_query_flag]
Forces the game to ask you for confirmation when you do something that
would normally cause an item to be picked up.
diff --git a/lib/mods/theme/help/option.txt b/lib/mods/theme/help/option.txt
index 10edb403..46db5b0d 100644
--- a/lib/mods/theme/help/option.txt
+++ b/lib/mods/theme/help/option.txt
@@ -92,9 +92,6 @@ off at will during the course of the game.
(useful for monster farming). Allows most keys to mean "no" to any
"[y/n]" prompt.
-#####GPrompt for various information [other_query_flag]
- No longer used.
-
#####GPrompt before picking things up [carry_query_flag]
Forces the game to ask you for confirmation when you do something that
would normally cause an item to be picked up.
diff --git a/lib/mods/theme/user/all.prf b/lib/mods/theme/user/all.prf
index 700c4637..e3da030f 100644
--- a/lib/mods/theme/user/all.prf
+++ b/lib/mods/theme/user/all.prf
@@ -8,9 +8,6 @@ X:rogue_like_commands
# Option 'Activate quick messages'
Y:quick_messages
-# Option 'Prompt for various information'
-X:other_query_flag
-
# Option 'Prompt before picking things up'
X:carry_query_flag
diff --git a/src/externs.h b/src/externs.h
index fdf82f5e..6ac56f79 100644
--- a/src/externs.h
+++ b/src/externs.h
@@ -187,7 +187,6 @@ extern void (*text_out_hook)(byte a, cptr str);
extern int text_out_indent;
extern bool_ rogue_like_commands;
extern bool_ quick_messages;
-extern bool_ other_query_flag;
extern bool_ carry_query_flag;
extern bool_ always_pickup;
extern bool_ prompt_pickup_heavy;
diff --git a/src/tables.c b/src/tables.c
index 6430e69a..1ebc52fd 100644
--- a/src/tables.c
+++ b/src/tables.c
@@ -1355,9 +1355,6 @@ option_type option_info[] =
{ &quick_messages, TRUE, 1, 1,
"quick_messages", "Activate quick messages" },
- { &other_query_flag, FALSE, 1, 2,
- "other_query_flag", "Prompt for various information" },
-
{ &carry_query_flag, FALSE, 1, 3,
"carry_query_flag", "Prompt before picking things up" },
diff --git a/src/variable.c b/src/variable.c
index 9f828da9..0cea5814 100644
--- a/src/variable.c
+++ b/src/variable.c
@@ -186,7 +186,6 @@ int text_out_indent = 0;
bool_ rogue_like_commands; /* Rogue-like commands */
bool_ quick_messages; /* Activate quick messages */
-bool_ other_query_flag; /* Prompt for various information */
bool_ carry_query_flag; /* Prompt before picking things up */
bool_ use_old_target; /* Use old target by default */
bool_ always_pickup; /* Pick things up by default */