do_first_line()
- Call edit_update() with TOP instead of CENTER; both do the
same thing, but it works faster with TOP. (DLR)
+ nanogetstr()
+ - Don't let the user type in ASCII 127 at the statusbar prompt.
+ (DLR)
titlebar()
- Fix problem with the available space for a filename on the
titlebar's being short by one. (DLR)
fprintf(stderr, "Aha! \'%c\' (%d)\n", kbinput, kbinput);
#endif
- if (kbinput == t->val && kbinput < 32) {
+ if (kbinput == t->val && (kbinput < 32 || kbinput == 127)) {
#ifndef DISABLE_HELP
/* Have to do this here, it would be too late to do it
return t->val;
}
- if (kbinput < 32)
+ if (kbinput < 32 || kbinput == 127)
break;
answer = charealloc(answer, xend + 2);
memmove(answer + x + 1, answer + x, xend - x + 1);