aboutsummaryrefslogtreecommitdiffstats
path: root/code/qcommon/common.c
diff options
context:
space:
mode:
authortma <tma@edf5b092-35ff-0310-97b2-ce42778d08ea>2005-10-21 19:52:52 +0000
committertma <tma@edf5b092-35ff-0310-97b2-ce42778d08ea>2005-10-21 19:52:52 +0000
commitf357041757ca351908dd57b3d05d880a1c546716 (patch)
tree7bb81184e95dc41253cd8093d81d395584967d10 /code/qcommon/common.c
parent47ee86eba52ddcd9b9be8b08aed52c00066478c0 (diff)
downloadioquake3-aero-f357041757ca351908dd57b3d05d880a1c546716.tar.gz
ioquake3-aero-f357041757ca351908dd57b3d05d880a1c546716.zip
* Tab completed commands no longer treated like cvars
git-svn-id: svn://svn.icculus.org/quake3/trunk@173 edf5b092-35ff-0310-97b2-ce42778d08ea
Diffstat (limited to 'code/qcommon/common.c')
-rw-r--r--code/qcommon/common.c20
1 files changed, 16 insertions, 4 deletions
diff --git a/code/qcommon/common.c b/code/qcommon/common.c
index 439acca..ac9b210 100644
--- a/code/qcommon/common.c
+++ b/code/qcommon/common.c
@@ -3209,11 +3209,23 @@ static void FindMatches( const char *s ) {
/*
===============
-PrintMatches
+PrintCmdMatches
===============
*/
-static void PrintMatches( const char *s ) {
+static void PrintCmdMatches( const char *s ) {
+ if ( !Q_stricmpn( s, shortestMatch, strlen( shortestMatch ) ) ) {
+ Com_Printf( " %s\n", s );
+ }
+}
+
+/*
+===============
+PrintCvarMatches
+
+===============
+*/
+static void PrintCvarMatches( const char *s ) {
if ( !Q_stricmpn( s, shortestMatch, strlen( shortestMatch ) ) ) {
Com_Printf( " %s = \"%s\"\n", s, Cvar_VariableString( s ) );
}
@@ -3309,6 +3321,6 @@ void Field_CompleteCommand( field_t *field ) {
Com_Printf( "]%s\n", completionField->buffer );
// run through again, printing matches
- Cmd_CommandCompletion( PrintMatches );
- Cvar_CommandCompletion( PrintMatches );
+ Cmd_CommandCompletion( PrintCmdMatches );
+ Cvar_CommandCompletion( PrintCvarMatches );
}