OSDN Git Service

2003-12-17 Jeff Johnston <jjohnstn@redhat.com>
authorJeff Johnston <jjohnstn@redhat.com>
Wed, 7 Jan 2004 18:35:59 +0000 (18:35 +0000)
committerJeff Johnston <jjohnstn@redhat.com>
Wed, 7 Jan 2004 18:35:59 +0000 (18:35 +0000)
        * generic/gdbtk-bp.c: Change calls to decode_line_1 to add
        new NULL parameter.
        * generic/gdbtk-cmds.c: Ditto.
        * generic/gdbtk-stack.c: Ditto.

gdb/gdbtk/ChangeLog
gdb/gdbtk/generic/gdbtk-bp.c
gdb/gdbtk/generic/gdbtk-cmds.c
gdb/gdbtk/generic/gdbtk-stack.c

index 5724830..5a005a2 100644 (file)
@@ -1,3 +1,10 @@
+2003-12-17  Jeff Johnston  <jjohnstn@redhat.com>
+
+       * generic/gdbtk-bp.c: Change calls to decode_line_1 to add
+       new NULL parameter.
+       * generic/gdbtk-cmds.c: Ditto.
+       * generic/gdbtk-stack.c: Ditto.
+
 2003-12-11  Jim Blandy  <jimb@redhat.com>
 
        * library/prefs.tcl (pref_read): The section marker or the word
index 6802518..9c46a4c 100644 (file)
@@ -905,7 +905,7 @@ tracepoint_exists (char *args)
   char *file = NULL;
   int result = -1;
 
-  sals = decode_line_1 (&args, 1, NULL, 0, &canonical);
+  sals = decode_line_1 (&args, 1, NULL, 0, &canonical, NULL);
   if (sals.nelts == 1)
     {
       resolve_sal_pc (&sals.sals[0]);
index def062c..2c8ecb2 100644 (file)
@@ -938,7 +938,7 @@ gdb_get_line_command (ClientData clientData, Tcl_Interp *interp,
     }
 
   args = Tcl_GetStringFromObj (objv[1], NULL);
-  sals = decode_line_1 (&args, 1, NULL, 0, &canonical);
+  sals = decode_line_1 (&args, 1, NULL, 0, &canonical, NULL);
   if (sals.nelts == 1)
     {
       Tcl_SetIntObj (result_ptr->obj_ptr, sals.sals[0].line);
@@ -974,7 +974,7 @@ gdb_get_file_command (ClientData clientData, Tcl_Interp *interp,
     }
 
   args = Tcl_GetStringFromObj (objv[1], NULL);
-  sals = decode_line_1 (&args, 1, NULL, 0, &canonical);
+  sals = decode_line_1 (&args, 1, NULL, 0, &canonical, NULL);
   if (sals.nelts == 1)
     {
       Tcl_SetStringObj (result_ptr->obj_ptr,
@@ -1010,7 +1010,7 @@ gdb_get_function_command (ClientData clientData, Tcl_Interp *interp,
     }
 
   args = Tcl_GetStringFromObj (objv[1], NULL);
-  sals = decode_line_1 (&args, 1, NULL, 0, &canonical);
+  sals = decode_line_1 (&args, 1, NULL, 0, &canonical, NULL);
   if (sals.nelts == 1)
     {
       resolve_sal_pc (&sals.sals[0]);
index 7e5cf2f..0838d5c 100644 (file)
@@ -301,7 +301,7 @@ gdb_get_vars_command (ClientData clientData, Tcl_Interp *interp,
   if (objc == 2)
     {
       args = Tcl_GetStringFromObj (objv[1], NULL);
-      sals = decode_line_1 (&args, 1, NULL, 0, &canonical);
+      sals = decode_line_1 (&args, 1, NULL, 0, &canonical, NULL);
       if (sals.nelts == 0)
        {
          gdbtk_set_result (interp, "error decoding line");