summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/command.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/command.cc')
-rw-r--r--crawl-ref/source/command.cc17
1 files changed, 4 insertions, 13 deletions
diff --git a/crawl-ref/source/command.cc b/crawl-ref/source/command.cc
index 6ebf009edf..86879504ea 100644
--- a/crawl-ref/source/command.cc
+++ b/crawl-ref/source/command.cc
@@ -140,7 +140,6 @@ static std::string _get_version_changes(void)
std::string help;
char buf[200];
bool start = false;
- bool skip_lines = true;
while (fgets(buf, sizeof buf, fp))
{
// Remove trailing spaces.
@@ -152,18 +151,10 @@ static std::string _get_version_changes(void)
break;
}
help = buf;
- // Give up if you encountered the second set of underliners
- // and still haven't encountered the keyword "Highlights".
- if (help.find("---") != std::string::npos)
- {
- if (skip_lines)
- {
- skip_lines = false;
- continue;
- }
- else if (!start)
- break;
- }
+
+ // Give up if you encounter an older version.
+ if (help.find("Stone Soup 0.3.4") != std::string::npos)
+ break;
if (help.find("Highlights") != std::string::npos)
{