]> git.saurik.com Git - bison.git/commitdiff
maint: space changes
authorAkim Demaille <akim@lrde.epita.fr>
Fri, 25 May 2012 12:36:32 +0000 (14:36 +0200)
committerAkim Demaille <akim@lrde.epita.fr>
Fri, 15 Jun 2012 09:54:57 +0000 (11:54 +0200)
* configure.ac, src/complain.c: space changes.

configure.ac
src/complain.c

index 95a1b0263b356f2f4f9c4e0ab2195b59f52eb952..0facd4ab25d54eaef4f56228697b906a9848ed5b 100644 (file)
@@ -73,6 +73,7 @@ if test "$enable_gcc_warnings" = yes; then
   warn_c='-Wbad-function-cast -Wmissing-declarations -Wmissing-prototypes
     -Wshadow -Wstrict-prototypes'
   warn_cxx='-Wnoexcept'
+
   AC_LANG_PUSH([C])
   for i in $warn_common $warn_c;
   do
@@ -89,7 +90,7 @@ if test "$enable_gcc_warnings" = yes; then
   do
     gl_WARN_ADD([$i], [WARN_CXXFLAGS])
   done
-  gl_WARN_ADD([ -Wzero-as-null-pointer-constant], [WARN_CXXFLAGS],
+  gl_WARN_ADD([-Wzero-as-null-pointer-constant], [WARN_CXXFLAGS],
               [AC_LANG_PROGRAM([], [nullptr])])
   gl_WARN_ADD([-Werror], [WERROR_CXXFLAGS])
   # Warnings for the test suite only.
index 18432b49ee2cadca2809e6f323af66381e9a91bc..6c7a8ec83876a64b77c8567c3b271ca12f53e7f5 100644 (file)
@@ -74,10 +74,11 @@ error_message (location *loc,
   vfprintf (stderr, message, args);
   {
     size_t l = strlen (message);
-    if (l < 2 || message[l-2] != ':' || message[l-1] != ' ') {
-      putc ('\n', stderr);
-      fflush (stderr);
-    }
+    if (l < 2 || message[l-2] != ':' || message[l-1] != ' ')
+      {
+        putc ('\n', stderr);
+        fflush (stderr);
+      }
   }
 }