2002-11-18 Andrew Cagney <ac131313@redhat.com>

* stack.c (frame_relative_level): Copy function from here ...
	* frame.c (frame_relative_level): ...to here.
This commit is contained in:
Andrew Cagney
2002-11-19 00:46:00 +00:00
parent 66b7e2229f
commit 85cf597a18
3 changed files with 17 additions and 16 deletions

View File

@ -115,22 +115,6 @@ extern int addressprint; /* Print addresses, or stay symbolic only? */
struct frame_info *selected_frame;
/* Level of the selected frame:
0 for innermost, 1 for its caller, ...
or -1 for frame specified by address with no defined level. */
/* Level of the selected frame: 0 for innermost, 1 for its caller, ...
or -1 for NULL frame. */
int
frame_relative_level (struct frame_info *fi)
{
if (fi == NULL)
return -1;
else
return fi->level;
}
/* Zero means do things normally; we are interacting directly with the
user. One means print the full filename and linenumber when a
frame is printed, and do so in a format emacs18/emacs19.22 can