Index: /trunk/src/kmk/kmkbuiltin/append.c
===================================================================
--- /trunk/src/kmk/kmkbuiltin/append.c	(revision 2015)
+++ /trunk/src/kmk/kmkbuiltin/append.c	(revision 2016)
@@ -50,6 +50,6 @@
             "      the first argument following the file name.\n"
             "  -c  Output the command for specified target(s). [builtin only]\n"
-            "  -n  Insert a new line between the strings.\n"
-            "  -N  Suppress the trailing new line.\n"
+            "  -n  Insert a newline between the strings.\n"
+            "  -N  Suppress the trailing newline.\n"
             "  -t  Truncate the file instead of appending\n"
             "  -v  Output the value(s) for specified variable(s). [builtin only]\n"
@@ -69,6 +69,6 @@
     int iFile;
     FILE *pFile;
-    int fNewLine = 0;
-    int fNoTrailingNewLine = 0;
+    int fNewline = 0;
+    int fNoTrailingNewline = 0;
     int fTruncate = 0;
     int fDefine = 0;
@@ -117,8 +117,8 @@
                         break;
                     case 'n':
-                        fNewLine = 1;
+                        fNewline = 1;
                         break;
                     case 'N':
-                        fNoTrailingNewLine = 1;
+                        fNoTrailingNewline = 1;
                         break;
                     case 't':
@@ -191,5 +191,5 @@
         size_t cch = strlen(psz);
         if (!fFirst)
-            fputc(fNewLine ? '\n' : ' ', pFile);
+            fputc(fNewline ? '\n' : ' ', pFile);
 #ifndef kmk_builtin_append
         if (fCommands)
@@ -241,5 +241,5 @@
      * Add the final newline (unless supressed) and close the file.
      */
-    if (    (   !fNoTrailingNewLine
+    if (    (   !fNoTrailingNewline
              && fputc('\n', pFile) == EOF)
         ||  ferror(pFile))
