equal
deleted
inserted
replaced
870 return true; |
870 return true; |
871 } |
871 } |
872 |
872 |
873 var = IConsoleVarGet(argv[1]); |
873 var = IConsoleVarGet(argv[1]); |
874 if (var != NULL && var->help != NULL) { |
874 if (var != NULL && var->help != NULL) { |
875 IConsolePrintF(_iconsole_color_warning, "%s.", var->help); |
875 IConsoleHelp(var->help); |
876 return true; |
876 return true; |
877 } |
877 } |
878 |
878 |
879 IConsoleError("command or variable not found"); |
879 IConsoleError("command or variable not found"); |
880 return true; |
880 return true; |