of new if block for subnfunc values (75)
- New backend code probably does not compile under anything but default options,
if that (76)
-- Meta-space and ^Space are not yet handled in new backend code (77)
- -enable-tiny does not work with new code (78)
- Home and End control keys (^A, ^E) do not always work in filename
prompt (bug found by Ian Turner) (69) [1.0 series only] [FIXED].
- Trying to insert a file of 0 bytes will hang nano (70) [FIXED].
+- Meta-space and ^Space are not yet handled in new backend code (77) [FIXED]
$Id$
s->seq = KEY_F0 + atoi(&s->keystr[1]);
} else /* raw */
s->seq = (int) s->keystr[0];
+
+ /* Override some keys which don't bind as nicely as we'd like */
+ if (s->type == CONTROL && (!strcasecmp(&s->keystr[1], "space")))
+ s->seq = 0;
+ else if (s->type == META && (!strcasecmp(&s->keystr[2], "space")))
+ s->seq = (int) ' ';
+
}
#ifdef DEBUG