diff options
Diffstat (limited to 'lstate.h')
-rw-r--r-- | lstate.h | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -74,7 +74,7 @@ | |||
74 | ** higher part counts the number of non-yieldable calls in the stack. | 74 | ** higher part counts the number of non-yieldable calls in the stack. |
75 | ** (They are together so that we can change both with one instruction.) | 75 | ** (They are together so that we can change both with one instruction.) |
76 | ** | 76 | ** |
77 | ** Because calls to external C functions can use of unkown amount | 77 | ** Because calls to external C functions can use an unknown amount |
78 | ** of space (e.g., functions using an auxiliary buffer), calls | 78 | ** of space (e.g., functions using an auxiliary buffer), calls |
79 | ** to these functions add more than one to the count (see CSTACKCF). | 79 | ** to these functions add more than one to the count (see CSTACKCF). |
80 | ** | 80 | ** |
@@ -185,9 +185,9 @@ typedef struct CallInfo { | |||
185 | union { | 185 | union { |
186 | int funcidx; /* called-function index */ | 186 | int funcidx; /* called-function index */ |
187 | int nyield; /* number of values yielded */ | 187 | int nyield; /* number of values yielded */ |
188 | struct { /* info about transfered values (for call/return hooks) */ | 188 | struct { /* info about transferred values (for call/return hooks) */ |
189 | unsigned short ftransfer; /* offset of first value transfered */ | 189 | unsigned short ftransfer; /* offset of first value transferred */ |
190 | unsigned short ntransfer; /* number of values transfered */ | 190 | unsigned short ntransfer; /* number of values transferred */ |
191 | } transferinfo; | 191 | } transferinfo; |
192 | } u2; | 192 | } u2; |
193 | short nresults; /* expected number of results from this function */ | 193 | short nresults; /* expected number of results from this function */ |