replaces cuttingpartialline).
do_uncut_text()
- Similar display fixes (David Lawrence Ramsey).
- cut_marked_segment()
- - Fix off-by one in mem allocation.
- faq.html
- Removed nano-editor.org FTP site address [deprecated] and added
the GNU one.
beginning of first line, prog should simply abort. Added
the #ifdefs around the code in main().
main()
- - Fixed off by one when checking for MAIN_LIST_LEN. Ugh.
- Moved #ifndef NANO_SMALL down past the case 0: line so
control-space doesn't insert a \0 (ack!)
- rcfile.c:
/* Look through the main shortcut list to see if we've hit a
shortcut key */
- for (i = 0; i < MAIN_LIST_LEN - 1 && !keyhandled; i++) {
+ for (i = 0; i < MAIN_LIST_LEN && !keyhandled; i++) {
if (kbinput == main_list[i].val ||
(main_list[i].misc1 && kbinput == main_list[i].misc1) ||
(main_list[i].misc2 && kbinput == main_list[i].misc2)) {