summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNico Weber <nicolasweber@gmx.de>2014-06-15 05:50:54 (GMT)
committerNico Weber <nicolasweber@gmx.de>2014-06-15 05:50:54 (GMT)
commit0ac72f01630bbca087cdb41a89ca4d80b659b536 (patch)
treeb948b15b1db93bae5194ea2feda1127d067de7eb
parente4b63f951c8fadaf9de045cbd14c73166c33aed5 (diff)
parentf7c8dd18acb4806ca3a84aa230d6ebec459ad507 (diff)
downloadNinja-0ac72f01630bbca087cdb41a89ca4d80b659b536.zip
Ninja-0ac72f01630bbca087cdb41a89ca4d80b659b536.tar.gz
Ninja-0ac72f01630bbca087cdb41a89ca4d80b659b536.tar.bz2
Merge pull request #778 from nico/spellrsp
spellcheck "keeprsp" in -d options
-rw-r--r--src/ninja.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ninja.cc b/src/ninja.cc
index 50de43e..4c8dab7 100644
--- a/src/ninja.cc
+++ b/src/ninja.cc
@@ -773,7 +773,7 @@ bool DebugEnable(const string& name) {
return true;
} else {
const char* suggestion =
- SpellcheckString(name.c_str(), "stats", "explain", NULL);
+ SpellcheckString(name.c_str(), "stats", "explain", "keeprsp", NULL);
if (suggestion) {
Error("unknown debug setting '%s', did you mean '%s'?",
name.c_str(), suggestion);