- Stat full_path, not path (Steven Kneizys).
open_pipe()
- I18nize the pipe error (DLR).
+ do_insertfile()
+ - Handle cancel from ExtCmd properly (David Benbennick).
read_file()
- Abort if we read a file of 0 lines (num_lines == 0), fixes BUG #70.
- Reverse tests to stop segfault on editing a new file of 0
}
#endif
+#ifndef NANO_SMALL
+ if (i == NANO_EXTCMD_KEY) {
+ int ts;
+ ts = statusq(1, extcmd_list, "", _("Command to execute "));
+ if (ts == -1 || answer == NULL || !strcmp(answer,"")) {
+ statusbar(_("Cancelled"));
+ UNSET(KEEP_CUTBUFFER);
+ display_main_list();
+ return 0;
+ }
+ }
+#endif
+
#ifdef ENABLE_MULTIBUFFER
if (loading_file) {
#ifndef NANO_SMALL
if (i == NANO_EXTCMD_KEY) {
- i = statusq(1, extcmd_list, "", _("Command to execute "));
- if (i == -1) {
- statusbar(_("Cancelled"));
- UNSET(KEEP_CUTBUFFER);
- display_main_list();
- return 0;
- }
- if (answer != NULL) {
- i = open_pipe(answer);
- }
+ i = open_pipe(answer);
}
else
#endif /* NANO_SMALL */