** Add a true to list of constants and return its index. */
| 620 | ** Add a true to list of constants and return its index. |
| 621 | */ |
| 622 | static int boolT (FuncState *fs) { |
| 623 | TValue o; |
| 624 | setbtvalue(&o); |
| 625 | return addk(fs, &o, &o); /* use boolean itself as key */ |
| 626 | } |
| 627 | |
| 628 | |
| 629 | /* |