diff options
author | Keith Seitz <keiths@redhat.com> | 2002-08-01 17:56:27 +0000 |
---|---|---|
committer | Keith Seitz <keiths@redhat.com> | 2002-08-01 17:56:27 +0000 |
commit | b473ba0c4e1468560f9b865cf7876088e7b545f4 (patch) | |
tree | bc9123ba90eabdf49ee303b66fc927ece2487b50 /gdb/gdbtk | |
parent | 539f09e2b29b16abeef5e461fe26b00533c88a88 (diff) | |
download | gdb-b473ba0c4e1468560f9b865cf7876088e7b545f4.tar.gz |
* library/prefs.tcl (pref_read): Don't suppress setting the default
colors if the user has suppressed reading the preferences file.
Diffstat (limited to 'gdb/gdbtk')
-rw-r--r-- | gdb/gdbtk/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/gdbtk/library/prefs.tcl | 5 |
2 files changed, 8 insertions, 2 deletions
diff --git a/gdb/gdbtk/ChangeLog b/gdb/gdbtk/ChangeLog index 37688b0898b..e03a187f4cc 100644 --- a/gdb/gdbtk/ChangeLog +++ b/gdb/gdbtk/ChangeLog @@ -1,3 +1,8 @@ +2002-08-01 Keith Seitz <keiths@redhat.com> + + * library/prefs.tcl (pref_read): Don't suppress setting the default + colors if the user has suppressed reading the preferences file. + 2002-07-31 Keith Seitz <keiths@redhat.com> * library/browserwin.itb (_full_funcs_combo): Remove "-modal" diff --git a/gdb/gdbtk/library/prefs.tcl b/gdb/gdbtk/library/prefs.tcl index 548168ae3c4..8d24cc378b7 100644 --- a/gdb/gdbtk/library/prefs.tcl +++ b/gdb/gdbtk/library/prefs.tcl @@ -139,9 +139,10 @@ proc pref_read {} { # now set global options set gdb_ImageDir [file join $GDBTK_LIBRARY [pref get gdb/ImageDir]] - # finally set colors, from system if possible - pref_set_colors } + + # finally set colors, from system if possible + pref_set_colors } # ------------------------------------------------------------------ |