git-svn-id: svn://svn.savannah.gnu.org/nano/branches/nano_1_0_branch/nano@881
35c25a1d-7b9e-4130-9fde-
d3aeb78583b8
move to the previous word in the file.
- Added #ifdef NANO_SMALL around do_next_space and do_prev_space
codes, as nano-tiny doesn't particularly need those features.
+ main()
+ - Ignore 26 (control-]) (bug discovered by David Lawrence Ramsey)
- nano.texi:
- Backported fix from 1.1 for Mouse Toggle.
- po/de.po:
i = editbot->lineno;
current = newend;
- if (i <= newend->lineno)
+ if (i < newend->lineno) {
edit_update(current, CENTER);
+ }
+ else {
+ edit_refresh();
+ }
}
/* If marked cut == 2, that means that we're doing a cut to end
i = editbot->lineno;
renumber(newbuf);
- if (i < newend->lineno)
+ if (i < newend->lineno) {
edit_update(fileptr, CENTER);
+ }
+ else {
+ edit_refresh();
+ }
dump_buffer_reverse(fileptr);
case 331: /* Stuff that we don't want to do squat */
case -1:
+ case 29: /* Ctrl-] */
case 410: /* Must ignore this, it gets sent when we resize */
#ifdef PDCURSES
case 541: /* ???? */