(Fframe_list): Don't return a tooltip frame.

This commit is contained in:
Gerd Moellmann 2001-03-25 11:37:40 +00:00
parent d67e4586ce
commit d74c19004f
2 changed files with 9 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2001-03-25 Gerd Moellmann <gerd@gnu.org>
* frame.c (Fframe_list): Don't return a tooltip frame.
2001-03-23 Gerd Moellmann <gerd@gnu.org>
* xdisp.c (mark_window_display_accurate_1): New function,

View file

@ -807,7 +807,11 @@ DEFUN ("frame-list", Fframe_list, Sframe_list,
"Return a list of all frames.")
()
{
return Fcopy_sequence (Vframe_list);
Lisp_Object frames;
frames = Fcopy_sequence (Vframe_list);
if (FRAMEP (tip_frame))
frames = Fdelq (tip_frame, frames);
return frames;
}
/* Return the next frame in the frame list after FRAME.