summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/command.cc
diff options
context:
space:
mode:
authorj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2009-05-14 14:34:31 +0000
committerj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2009-05-14 14:34:31 +0000
commit77398364e73bee6487c9ae0006144d03ba90ada0 (patch)
tree2ce7d85c334dab8992e474ac9b31a3c3b58c4dd5 /crawl-ref/source/command.cc
parent4153ebb74a9cbcdb20f904f61ec3f77e8438c507 (diff)
downloadcrawl-ref-77398364e73bee6487c9ae0006144d03ba90ada0.tar.gz
crawl-ref-77398364e73bee6487c9ae0006144d03ba90ada0.zip
Modify ?v to read in the list of changed command keys.
Modify version highlights. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@9765 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/command.cc')
-rw-r--r--crawl-ref/source/command.cc7
1 files changed, 2 insertions, 5 deletions
diff --git a/crawl-ref/source/command.cc b/crawl-ref/source/command.cc
index 30bb0eb893..8b07755b10 100644
--- a/crawl-ref/source/command.cc
+++ b/crawl-ref/source/command.cc
@@ -59,8 +59,6 @@ static void _adjust_spells(void);
static void _adjust_ability(void);
static const char *features[] = {
- "Stash-tracking",
-
#ifdef CLUA_BINDINGS
"Lua user scripts",
#endif
@@ -106,7 +104,7 @@ static std::string _get_version_information(void)
#endif
result += VERSION_DETAIL ").";
- result += "\n\n";
+ result += "\n";
return (result);
}
@@ -122,7 +120,6 @@ static std::string _get_version_features(void)
result += features[i];
result += EOL;
}
- result += "\n";
return (result);
}
@@ -229,7 +226,7 @@ static void _print_version(void)
cmd_version.add_text(_get_version_features());
cmd_version.add_text(_get_version_changes());
- std::string fname = "034_changes.txt";
+ std::string fname = "key_changes.txt";
// Read in information about changes in comparison to the latest version.
FILE* fp = fopen(datafile_path(fname, false).c_str(), "r");