]> git.mxchange.org Git - flightgear.git/blobdiff - src/ATCDCL/ATCVoice.cxx
Add --log-class option, improve logging classes.
[flightgear.git] / src / ATCDCL / ATCVoice.cxx
index 7437884f7de34fa6b136f621ac95df346f1f33d8..07825f78c3f5c64239c7e94e9f4c0e922e6a95c8 100644 (file)
@@ -144,6 +144,8 @@ void* FGATCVoice::WriteMessage(const string& message, size_t* len) {
                        token_start = message.find_first_not_of(delimiters, token_end);
                }
 
+                if (token == "/_") continue;
+
                for(string::iterator t = token.begin(); t != token.end(); t++) {
                        // canonicalize the token, to match what's in the index
                        *t = (*t == '-') ? '_' : tolower(*t);