diff options
| author | Shinichiro Hamaji <shinichiro.hamaji@gmail.com> | 2015-10-09 16:12:32 +0900 |
|---|---|---|
| committer | Shinichiro Hamaji <shinichiro.hamaji@gmail.com> | 2015-10-09 16:12:32 +0900 |
| commit | c58db99fcb36c54b8bf48d8fa8f52c7bc8e09761 (patch) | |
| tree | b2f5b8c74f2bd119e015b08bbe2a53fdc8a72629 /ninja.cc | |
| parent | 5de5826c31cbab8dc51a296dccbcf344031a95ec (diff) | |
[C++] Make the fast pass of EscapeShell consistent with the rest
Diffstat (limited to 'ninja.cc')
| -rw-r--r-- | ninja.cc | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -471,7 +471,7 @@ class NinjaGenerator { } void EscapeShell(string* s) const { - if (s->find_first_of("$`!\\\"") == string::npos) + if (s->find_first_of("$`\\\"") == string::npos) return; string r; bool last_dollar = false; |
