]> de.git.xonotic.org Git - xonotic/darkplaces.git/commitdiff
fix descriptions of cmdlist and cvarlist
authordivverent <divverent@d7cf8633-e32d-0410-b094-e92efae38249>
Wed, 16 Sep 2009 10:19:34 +0000 (10:19 +0000)
committerdivverent <divverent@d7cf8633-e32d-0410-b094-e92efae38249>
Wed, 16 Sep 2009 10:19:34 +0000 (10:19 +0000)
git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@9202 d7cf8633-e32d-0410-b094-e92efae38249

cmd.c

diff --git a/cmd.c b/cmd.c
index 476ec67b549136595865a3954e116f269c1beb53..3457a534062c3e92c1da72c5f16c163bfaec428c 100644 (file)
--- a/cmd.c
+++ b/cmd.c
@@ -1193,8 +1193,8 @@ void Cmd_Init_Commands (void)
 
        // 2000-01-09 CmdList, CvarList commands By Matthias "Maddes" Buecher
        // Added/Modified by EvilTypeGuy eviltypeguy@qeradiant.com
-       Cmd_AddCommand ("cmdlist", Cmd_List_f, "lists all console commands beginning with the specified prefix");
-       Cmd_AddCommand ("cvarlist", Cvar_List_f, "lists all console variables beginning with the specified prefix");
+       Cmd_AddCommand ("cmdlist", Cmd_List_f, "lists all console commands beginning with the specified prefix or matching the specified wildcard pattern");
+       Cmd_AddCommand ("cvarlist", Cvar_List_f, "lists all console variables beginning with the specified prefix or matching the specified wildcard pattern");
        Cmd_AddCommand ("apropos", Cmd_Apropos_f, "lists all console variables/commands/aliases containing the specified string in the name or description");
 
        Cmd_AddCommand ("cvar_lockdefaults", Cvar_LockDefaults_f, "stores the current values of all cvars into their default values, only used once during startup after parsing default.cfg");