]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
cli/cli-script.c (multi_line_command_p): New function.
authorDoug Evans <xdje42@gmail.com>
Sat, 23 Nov 2013 19:47:24 +0000 (11:47 -0800)
committerDoug Evans <xdje42@gmail.com>
Sat, 23 Nov 2013 19:47:24 +0000 (11:47 -0800)
* cli/cli-script.c (multi_line_command_p): New function.
(recurse_read_control_structure, read_command_lines_1): Call it.
(execute_control_command): Consistently have a blank line between
each case.

gdb/ChangeLog
gdb/cli/cli-script.c

index 77aec049c1a789e9ede901b5c78d1261dd343f43..db947eaccf6fdd8256b43be694dfa4f4510cdef7 100644 (file)
@@ -1,3 +1,10 @@
+2013-11-23  Doug Evans  <xdje42@gmail.com>
+
+       * cli/cli-script.c (multi_line_command_p): New function.
+       (recurse_read_control_structure, read_command_lines_1): Call it.
+       (execute_control_command): Consistently have a blank line between
+       each case.
+
 2013-11-22  Sterling Augustine  <saugustine@google.com>
 
        PR gdb/16196:
index 3e8ed7f0504108312ed98d2f0c08157543bed838..387a11ee17a22055a4c5190d19fe10def402ea33 100644 (file)
@@ -78,6 +78,25 @@ struct user_args
  *user_args;
 
 \f
+/* Return non-zero if TYPE is a multi-line command (i.e., is terminated
+   by "end").  */
+
+static int
+multi_line_command_p (enum command_control_type type)
+{
+  switch (type)
+    {
+    case if_control:
+    case while_control:
+    case while_stepping_control:
+    case commands_control:
+    case python_control:
+      return 1;
+    default:
+      return 0;
+    }
+}
+
 /* Allocate, initialize a new command line structure for one of the
    control commands (if/while).  */
 
@@ -556,6 +575,7 @@ execute_control_command (struct command_line *cmd)
 
        break;
       }
+
     case commands_control:
       {
        /* Breakpoint commands list, record the commands in the
@@ -567,6 +587,7 @@ execute_control_command (struct command_line *cmd)
        ret = commands_from_control_command (new_line, cmd);
        break;
       }
+
     case python_control:
       {
        eval_python_from_control_command (cmd);
@@ -1103,11 +1124,7 @@ recurse_read_control_structure (char * (*read_next_line_func) (void),
 
       if (val == end_command)
        {
-         if (current_cmd->control_type == while_control
-             || current_cmd->control_type == while_stepping_control
-             || current_cmd->control_type == if_control
-             || current_cmd->control_type == python_control
-             || current_cmd->control_type == commands_control)
+         if (multi_line_command_p (current_cmd->control_type))
            {
              /* Success reading an entire canned sequence of commands.  */
              ret = simple_control;
@@ -1156,11 +1173,7 @@ recurse_read_control_structure (char * (*read_next_line_func) (void),
 
       /* If the latest line is another control structure, then recurse
          on it.  */
-      if (next->control_type == while_control
-         || next->control_type == while_stepping_control
-         || next->control_type == if_control
-         || next->control_type == python_control
-         || next->control_type == commands_control)
+      if (multi_line_command_p (next->control_type))
        {
          control_level++;
          ret = recurse_read_control_structure (read_next_line_func, next,
@@ -1275,11 +1288,7 @@ read_command_lines_1 (char * (*read_next_line_func) (void), int parse_commands,
          break;
        }
 
-      if (next->control_type == while_control
-         || next->control_type == if_control
-         || next->control_type == python_control
-         || next->control_type == commands_control
-         || next->control_type == while_stepping_control)
+      if (multi_line_command_p (next->control_type))
        {
          control_level++;
          ret = recurse_read_control_structure (read_next_line_func, next,