From: divverent Date: Wed, 16 Sep 2009 10:19:34 +0000 (+0000) Subject: fix descriptions of cmdlist and cvarlist X-Git-Tag: xonotic-v0.1.0preview~1430 X-Git-Url: http://de.git.xonotic.org/?p=xonotic%2Fdarkplaces.git;a=commitdiff_plain;h=513035b1e1f888ac5c3438e300ea302406d48a13 fix descriptions of cmdlist and cvarlist git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@9202 d7cf8633-e32d-0410-b094-e92efae38249 --- diff --git a/cmd.c b/cmd.c index 476ec67b..3457a534 100644 --- 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");