Fix typos
This commit is contained in:
parent
9447f05fbb
commit
84f71d6385
2 changed files with 8 additions and 3 deletions
|
@ -1,3 +1,9 @@
|
|||
Thu Nov 27 09:07:18 1997 Michael Meissner <meissner@cygnus.com>
|
||||
|
||||
* gdbtk.c (gdb_get_breakpoint_info): Add missing filename
|
||||
argument.
|
||||
(toplevel): Move include of guitcl.h into #ifdef IDE region.
|
||||
|
||||
Wed Nov 26 22:59:04 1997 Jeffrey A Law (law@cygnus.com)
|
||||
|
||||
* remote-sim.c (gdbsim_cntrl_c): Lose ANSI prototype.
|
||||
|
|
|
@ -39,10 +39,9 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
|||
#include <itcl.h>
|
||||
#include <tix.h>
|
||||
|
||||
#include "guitcl.h"
|
||||
|
||||
#ifdef IDE
|
||||
/* start-sanitize-ide */
|
||||
#include "guitcl.h"
|
||||
#include "event.h"
|
||||
#include "idetcl.h"
|
||||
#include "ilutk.h"
|
||||
|
@ -483,7 +482,7 @@ gdb_get_breakpoint_info (clientData, interp, argc, argv)
|
|||
filename = symtab_to_filename (sal.symtab);
|
||||
if (filename == NULL)
|
||||
filename = "N/A";
|
||||
Tcl_DStringAppendElement (result_ptr, );
|
||||
Tcl_DStringAppendElement (result_ptr, filename);
|
||||
find_pc_partial_function (b->address, &funcname, NULL, NULL);
|
||||
Tcl_DStringAppendElement (result_ptr, funcname);
|
||||
dsprintf_append_element (result_ptr, "%d", sal.line);
|
||||
|
|
Loading…
Add table
Reference in a new issue