diff options
author | Andrew Cagney <cagney@redhat.com> | 2002-04-21 20:23:34 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2002-04-21 20:23:34 +0000 |
commit | b31da25ee58e2b01aa0c189474a277b443d94517 (patch) | |
tree | bd1b4f62bb41babd8e6f5f4656b696bbdca57a63 /gdb/corelow.c | |
parent | 9c1d6fe5536783eb7199ca7767f7ee74d5e9e6fd (diff) | |
download | binutils-gdb-b31da25ee58e2b01aa0c189474a277b443d94517.tar.gz |
* frame.h (selected_frame_level): Document as deprecated.
(frame_relative_level): Declare.
* stack.c (frame_relative_level): New function.
(selected_frame_level): Document as deprecated.
(select_frame): Do not set the selected_frame_level.
* stack.c (frame_info, record_selected_frame): Update.
(frame_command, current_frame_command): Update.
(up_silently_base, up_command, down_silently_base): Update.
(down_command): Update.
* inflow.c (kill_command): Update.
* tracepoint.c (finish_tfind_command): Update.
* corelow.c (core_open): Update.
* thread.c (info_threads_command): Update.
(do_captured_thread_select): Update.
* infcmd.c (finish_command): Update.
* breakpoint.c (insert_breakpoints, do_enable_breakpoint): Update.
Diffstat (limited to 'gdb/corelow.c')
-rw-r--r-- | gdb/corelow.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gdb/corelow.c b/gdb/corelow.c index 68219c512c6..125952d9745 100644 --- a/gdb/corelow.c +++ b/gdb/corelow.c @@ -359,7 +359,8 @@ core_open (char *filename, int from_tty) /* Now, set up the frame cache, and print the top of stack. */ flush_cached_frames (); select_frame (get_current_frame (), 0); - print_stack_frame (selected_frame, selected_frame_level, 1); + print_stack_frame (selected_frame, + frame_relative_level (selected_frame), 1); } else { |