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