** Add a false to list of constants and return its index. */
| 623 | ** Add a false to list of constants and return its index. |
| 624 | */ |
| 625 | static int boolF (FuncState *fs) { |
| 626 | TValue o; |
| 627 | setbfvalue(&o); |
| 628 | return addk(fs, &o, &o); /* use boolean itself as key */ |
| 629 | } |
| 630 | |
| 631 | |
| 632 | /* |