Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
d74c1900
Commit
d74c1900
authored
Mar 25, 2001
by
Gerd Moellmann
Browse files
(Fframe_list): Don't return a tooltip frame.
parent
d67e4586
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
1 deletion
+9
-1
src/ChangeLog
src/ChangeLog
+4
-0
src/frame.c
src/frame.c
+5
-1
No files found.
src/ChangeLog
View file @
d74c1900
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,
...
...
src/frame.c
View file @
d74c1900
...
...
@@ -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.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment