mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-10-22 16:20:23 +02:00
45340: internal: Document the difference between paramtab and realparamtab.
This commit is contained in:
parent
e626f57613
commit
5e843a3721
2 changed files with 12 additions and 1 deletions
|
@ -478,7 +478,13 @@ static initparam argvparam_pm = IPDEF9("", &pparams, NULL, \
|
|||
|
||||
static Param argvparam;
|
||||
|
||||
/* hash table containing the parameters */
|
||||
/* "parameter table" - hash table containing the parameters
|
||||
*
|
||||
* realparamtab always points to the shell's global table. paramtab is sometimes
|
||||
* temporarily changed to point at another table, while dealing with the keys
|
||||
* of an associative array (for example, see makecompparams() which initializes
|
||||
* the associative array ${compstate}).
|
||||
*/
|
||||
|
||||
/**/
|
||||
mod_export HashTable paramtab, realparamtab;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue