Clarified purpose of LOTS and NLOTS macros

This commit is contained in:
Jim Monte 2019-12-09 19:23:25 -05:00
parent b39e5d9507
commit 6792441f9d
1 changed files with 3 additions and 0 deletions

View File

@ -47,6 +47,9 @@ struct comm {
char *co_help;
};
/* These macros are used only in definitions of commands, where they
* are used as the upper limit to the number of arguments for a command
* when that number is essentially arbitrary, with NLOTS being even more */
#define LOTS 1000
#define NLOTS 10000