- nano.c:
main()
- Change the getop option to 'F' (David Lawrence Ramsey)
+- files.c:
+ do_writeout()
+ - Check for open_files == NULL before using it (Ryan Krebs)
- global.c:
shortcut_init()
- Rewrote the whereis and replace lists to put CANCEL at the end
update the filename and full path stored in the
current entry, and then update the current entry,
checking for duplicate entries */
- if (strcmp(open_files->data, filename)) {
+ if (open_files != NULL && strcmp(open_files->data, filename)) {
open_file_change_name();
add_open_file(1, 1);
}