** Add a true to list of constants and return its index. */
| 633 | ** Add a true to list of constants and return its index. |
| 634 | */ |
| 635 | static int boolT (FuncState *fs) { |
| 636 | TValue o; |
| 637 | setbtvalue(&o); |
| 638 | return addk(fs, &o, &o); /* use boolean itself as key */ |
| 639 | } |
| 640 | |
| 641 | |
| 642 | /* |