Hi, Enclosed is a very simple patch which fixes the annoying TUI-updating issue described in http://sourceware.org/bugzilla/show_bug.cgi?id=13378. It simply eliminates a call to deprecated_selected_frame_level_changed_hook. This hook has been deprecated for many years, so one would think it's clients have had time to remove the dependency. After using it locally for a week now, I see no ill effects in TUI. stopping at breakpoints, up, down, and the other stuff all work fine for me. However, the testsuite is, err, incomplete on this feature. I do wonder if Insight--or some other front end--might have a problem with it though. If you deal with TUI or another front end, can you take it for a spin? If this patch is accepted, then the next logical one would be to eliminate the hook altogether, but that will require changes to Insight. Thanks, Sterling 2011-11-11 Sterling Augustine PR gdb/13378 * frame.c (select_frame): Don't call deprecated_selected_frame_level_changed_hook. Eliminate obsolete FIXME.