Minor coding-style fixes in ada-lex.l:find_dot_all.
authorJoel Brobecker <brobecker@adacore.com>
Wed, 27 Nov 2013 15:10:14 +0000 (19:10 +0400)
committerJoel Brobecker <brobecker@adacore.com>
Thu, 5 Dec 2013 03:38:49 +0000 (07:38 +0400)
gdb/ChangeLog:

        * ada-lex.l (find_dot_all): Fix coding style violations.

gdb/ChangeLog
gdb/ada-lex.l

index 22debbb..380177a 100644 (file)
@@ -1,3 +1,7 @@
+2013-12-05  Joel Brobecker  <brobecker@adacore.com>
+
+       * ada-lex.l (find_dot_all): Fix coding style violations.
+
 2013-12-03  Walfred Tedeschi  <walfred.tedeschi@intel.com>
 
        * NEWS:  Add section for Intel(R) Architecture Instructions
index 8ad825b..e9cda4a 100644 (file)
@@ -537,19 +537,20 @@ static int
 find_dot_all (const char *str)
 {
   int i;
-  for (i = 0; str[i] != '\000'; i += 1)
-    {
-      if (str[i] == '.')
-       {
-         int i0 = i;
-         do
-           i += 1;
-         while (isspace (str[i]));
-         if (strncasecmp (str+i, "all", 3) == 0
-             && ! isalnum (str[i+3]) && str[i+3] != '_')
-           return i0;
-       }
-    }
+
+  for (i = 0; str[i] != '\000'; i++)
+    if (str[i] == '.')
+      {
+       int i0 = i;
+
+       do
+         i += 1;
+       while (isspace (str[i]));
+
+       if (strncasecmp (str + i, "all", 3) == 0
+           && !isalnum (str[i + 3]) && str[i + 3] != '_')
+         return i0;
+      }
   return -1;
 }