diff options
author | Fernando Nasser <fnasser@redhat.com> | 2000-06-08 20:30:07 +0000 |
---|---|---|
committer | Fernando Nasser <fnasser@redhat.com> | 2000-06-08 20:30:07 +0000 |
commit | ba7ee1f945cbe94141fa1250e9478aebf2272bd0 (patch) | |
tree | dda20ba8c5af60ee1ae9712125a7a1767e7b47ab | |
parent | bdbc8f5c0b1dc550b6e186fb23943025ead3942b (diff) | |
download | gdb-ba7ee1f945cbe94141fa1250e9478aebf2272bd0.tar.gz |
2000-06-06 Fernando Nasser <fnasser@cygnus.com>
* util.tcl (find_iwidgets_library): Add missing global declaration
which caused a stack trace instead of the proper error message.
-rw-r--r-- | gdb/gdbtk/library/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/gdbtk/library/util.tcl | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/gdb/gdbtk/library/ChangeLog b/gdb/gdbtk/library/ChangeLog index 2b6df2ee4ce..27b21b516c7 100644 --- a/gdb/gdbtk/library/ChangeLog +++ b/gdb/gdbtk/library/ChangeLog @@ -1,3 +1,8 @@ +2000-06-06 Fernando Nasser <fnasser@cygnus.com> + + * util.tcl (find_iwidgets_library): Add missing global declaration + which caused a stack trace instead of the proper error message. + 2000-05-04 Fernando Nasser <fnasser@cygnus.com> * regwin.itb (build_win, update): Safer test for editable. diff --git a/gdb/gdbtk/library/util.tcl b/gdb/gdbtk/library/util.tcl index 558dbbf601a..97c9b277e28 100644 --- a/gdb/gdbtk/library/util.tcl +++ b/gdb/gdbtk/library/util.tcl @@ -225,6 +225,7 @@ proc gridCGet {slave option} { # # ------------------------------------------------------------------ proc find_iwidgets_library {} { + global errMsg set IwidgetsOK 1 |