]> git.wh0rd.org Git - nano.git/commitdiff
comment fix for consistency: "magic line" -> "magicline"
authorDavid Lawrence Ramsey <pooka109@gmail.com>
Mon, 24 May 2004 05:05:07 +0000 (05:05 +0000)
committerDavid Lawrence Ramsey <pooka109@gmail.com>
Mon, 24 May 2004 05:05:07 +0000 (05:05 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@1760 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

src/files.c
src/nano.c

index ec737597fb17bf1482a603430c4b9c284f3c5ed7..05ff48855c262c715bc995539c67495c99046b43 100644 (file)
@@ -1638,7 +1638,7 @@ int write_file(const char *name, int tmp, int append, int nonamechange)
        goto cleanup_and_exit;
     }
 
-    /* There might not be a magic line.  There won't be when writing out
+    /* There might not be a magicline.  There won't be when writing out
      * a selection. */
     assert(fileage != NULL && filebot != NULL);
     while (fileptr != filebot) {
index c8dfce70213ccb1efbcae6180d021da8a15b332c..22a3ec057d037017a737a539198a56fe001be823 100644 (file)
@@ -1035,7 +1035,7 @@ int do_delete(void)
     } else if (current != filebot && (current->next != filebot ||
        current->data[0] == '\0')) {
        /* We can delete the line before filebot only if it is blank: it
-        * becomes the new magic line then. */
+        * becomes the new magicline then. */
        filestruct *foo = current->next;
 
        assert(current_x == strlen(current->data));