Changeset 1203 for trunk/src/kash/var.c
- Timestamp:
- Oct 7, 2007, 3:39:01 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kash/var.c
r1202 r1203 681 681 } 682 682 683 while ((name = * argptr++) != NULL) {683 while ((name = *psh->argptr++) != NULL) { 684 684 if ((p = strchr(name, '=')) != NULL) { 685 685 p++; … … 708 708 if (! in_function(psh)) 709 709 error(psh, "Not in a function"); 710 while ((name = * argptr++) != NULL) {710 while ((name = *psh->argptr++) != NULL) { 711 711 mklocal(psh, name, 0); 712 712 } … … 830 830 flg_var = 1; 831 831 832 for (ap = argptr; *ap ; ap++) {832 for (ap = psh->argptr; *ap ; ap++) { 833 833 if (flg_func) 834 834 ret |= unsetfunc(psh, *ap);
Note:
See TracChangeset
for help on using the changeset viewer.