** Add a false to list of constants and return its index. */
| 605 | ** Add a false to list of constants and return its index. |
| 606 | */ |
| 607 | static int boolF (FuncState *fs) { |
| 608 | TValue o; |
| 609 | setbfvalue(&o); |
| 610 | return addk(fs, &o, &o); /* use boolean itself as key */ |
| 611 | } |
| 612 | |
| 613 | |
| 614 | /* |