fix breakage
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3981 35c25a1d-7b9e-4130-9fde-d3aeb78583b8master
parent
9d4b8fb434
commit
f7eef5d04c
10
src/files.c
10
src/files.c
|
@ -728,8 +728,10 @@ void do_insertfile(
|
||||||
"./");
|
"./");
|
||||||
|
|
||||||
/* If we're in multibuffer mode and the filename or command is
|
/* If we're in multibuffer mode and the filename or command is
|
||||||
* blank, open a new buffer instead of canceling. */
|
* blank, open a new buffer instead of canceling. If the
|
||||||
if (i == -1 || (i == -2
|
* filename or command begins with an unsunder()ed null, treat
|
||||||
|
* it as though it's blank. */
|
||||||
|
if (i == -1 || ((i == -2 || answer[0] == '\n')
|
||||||
#ifdef ENABLE_MULTIBUFFER
|
#ifdef ENABLE_MULTIBUFFER
|
||||||
&& !ISSET(MULTIBUFFER)
|
&& !ISSET(MULTIBUFFER)
|
||||||
#endif
|
#endif
|
||||||
|
@ -1819,7 +1821,9 @@ int do_writeout(bool exiting)
|
||||||
#endif
|
#endif
|
||||||
);
|
);
|
||||||
|
|
||||||
if (i < 0) {
|
/* If the filename or command begins with an unsunder()ed null,
|
||||||
|
* treat it as though it's blank. */
|
||||||
|
if (i < 0 || answer[0] == '\n') {
|
||||||
statusbar(_("Cancelled"));
|
statusbar(_("Cancelled"));
|
||||||
retval = -1;
|
retval = -1;
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in New Issue