parse_config("OPTIONS=!color") */
| 661 | |
| 662 | /* parse_config("OPTIONS=!color") */ |
| 663 | staticfn int |
| 664 | nhl_parse_config(lua_State *L) |
| 665 | { |
| 666 | int argc = lua_gettop(L); |
| 667 | |
| 668 | if (argc == 1) |
| 669 | parse_conf_str(luaL_checkstring(L, 1), parse_config_line); |
| 670 | else |
| 671 | nhl_error(L, "Wrong args"); |
| 672 | |
| 673 | return 0; |
| 674 | } |
| 675 | |
| 676 | /* local windowtype = get_config("windowtype"); */ |
| 677 | staticfn int |
nothing calls this directly
no test coverage detected