- Fix renumbering bug when uncutting marked test at filebot.
- Fix screen not being displayed when we are uncutting marked
text at editbot (Bug discovered by Ken Tyler).
+ - Fix magic line not getting created when (you guessed it)
+ uncutting marked text at filebot (Ryan Krebs).
- files.c:
write_file()
- Change open call flags, basically copy joe's way of doing it so
- nano.c:
renumber()
- Dont stupidly assign the value of prev->lineno if prev == NULL!
+- utils.c:
+ new_magicline()
+ - Increment totsize!!
nano 0.9.23 - 12/08/2000
General
if (editbot == filebot)
editbot = newend;
filebot = newend;
+ new_magicline();
}
/* Now why don't we update the totsize also */
filebot->next->lineno = filebot->lineno + 1;
filebot = filebot->next;
totlines++;
+ totsize++;
}
#ifndef DISABLE_TABCOMP