editor: don't sort keys in help screen

The order of these actually matters; we shouldn't be resorting them.

Fixes issue 86.
This commit is contained in:
Devin J. Pohly
2013-08-29 13:32:24 -04:00
parent 5868571f37
commit 9ec3b61bd1
-1
View File
@@ -5762,7 +5762,6 @@ static void ProcessKeyNames( vector<RString> &vs )
FOREACH( RString, vs, s )
ProcessKeyName( *s );
sort( vs.begin(), vs.end() );
vector<RString>::iterator toDelete = unique( vs.begin(), vs.end() );
vs.erase(toDelete, vs.end());
}