Commit 32d19ce4 authored by David Lawrence Ramsey's avatar David Lawrence Ramsey
Browse files

comment fix for consistency: "magic line" -> "magicline"

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@1760 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
No related merge requests found
Showing with 2 additions and 2 deletions
+2 -2
......@@ -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) {
......
......@@ -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));
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment