]> git.wh0rd.org Git - nano.git/commitdiff
still more comment fixes
authorDavid Lawrence Ramsey <pooka109@gmail.com>
Mon, 27 Nov 2006 07:13:28 +0000 (07:13 +0000)
committerDavid Lawrence Ramsey <pooka109@gmail.com>
Mon, 27 Nov 2006 07:13:28 +0000 (07:13 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3983 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

src/files.c

index 7cb0d2d7edd57f3a9b5d5f0f789d887a54d6fdec..d027eec2f04fae5e9ca36cb58abc63b00f61e7d2 100644 (file)
@@ -729,8 +729,8 @@ void do_insertfile(
 
        /* If we're in multibuffer mode and the filename or command is
         * blank, open a new buffer instead of canceling.  If the
-        * filename or command begins with an unsunder()ed null, treat
-        * it as though it's blank. */
+        * filename or command begins with a newline (i.e. an encoded
+        * null), treat it as though it's blank. */
        if (i == -1 || ((i == -2 || answer[0] == '\n')
 #ifdef ENABLE_MULTIBUFFER
                && !ISSET(MULTIBUFFER)
@@ -1821,8 +1821,8 @@ int do_writeout(bool exiting)
 #endif
                );
 
-       /* If the filename or command begins with an unsunder()ed null,
-        * treat it as though it's blank. */
+       /* If the filename or command begins with a newline (i.e. an
+        * encoded null), treat it as though it's blank. */
        if (i < 0 || answer[0] == '\n') {
            statusbar(_("Cancelled"));
            retval = -1;