diff options
Diffstat (limited to 'src/bind.c')
-rw-r--r-- | src/bind.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -60,9 +60,9 @@ INIT { con_cmdcb cb = con_getcmdcb(cmd_key_listboundkeys); if_cold (!find_keyinfo(cb)) { errmsg_warnx("couldn't find key binding list"); - return false; + return FEAT_INCOMPAT; } - return true; + return FEAT_OK; } // vi: sw=4 ts=4 noet tw=80 cc=80 |