]> git.wh0rd.org Git - nano.git/commitdiff
formatting fixes
authorDavid Lawrence Ramsey <pooka109@gmail.com>
Mon, 1 Aug 2005 05:54:11 +0000 (05:54 +0000)
committerDavid Lawrence Ramsey <pooka109@gmail.com>
Mon, 1 Aug 2005 05:54:11 +0000 (05:54 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@2964 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

src/color.c
src/rcfile.c

index 1ef7b6eacdccfdf5eb0ceb5a5ba51a849409ffa4..ee58d9dc7d3c644df79c0f93f8bd7f59d9c2ae0d 100644 (file)
@@ -98,8 +98,7 @@ void color_init(void)
            init_pair(tmpcolor->pairnum, foreground, background);
 
 #ifdef DEBUG
-           fprintf(stderr, "init_pair(): fg = %hd, bg = %hd\n",
-               tmpcolor->fg, tmpcolor->bg);
+           fprintf(stderr, "init_pair(): fg = %hd, bg = %hd\n", tmpcolor->fg, tmpcolor->bg);
 #endif
        }
     }
index 9747ceef2df2307b7deec1456942310db9ecf2fe..5707e83e75eca91b342e0e16b3d921e2a478052a 100644 (file)
@@ -110,8 +110,7 @@ void rcfile_error(const char *msg, ...)
     fprintf(stderr, "\n");
     if (lineno > 0) {
        errors = TRUE;
-       fprintf(stderr, _("Error in %s on line %lu: "), nanorc,
-               (unsigned long)lineno);
+       fprintf(stderr, _("Error in %s on line %lu: "), nanorc, (unsigned long)lineno);
     }
 
     va_start(ap, msg);
@@ -724,8 +723,7 @@ void parse_rcfile(FILE *rcstream)
 
     if (errors) {
        errors = FALSE;
-       fprintf(stderr,
-               _("\nPress Return to continue starting nano\n"));
+       fprintf(stderr, _("\nPress Return to continue starting nano\n"));
        while (getchar() != '\n')
            ;
     }