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