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