Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
6a65b1b5
Commit
6a65b1b5
authored
Mar 25, 2001
by
Eli Zaretskii
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(Fframe_list): Don't reference tip_frame if HAVE_WINDOW_SYSTEM is not defined.
parent
6c145d35
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
0 deletions
+5
-0
src/ChangeLog
src/ChangeLog
+3
-0
src/frame.c
src/frame.c
+2
-0
No files found.
src/ChangeLog
View file @
6a65b1b5
2001-03-25 Eli Zaretskii <eliz@is.elta.co.il>
* frame.c (Fframe_list): Don't reference tip_frame if
HAVE_WINDOW_SYSTEM is not defined.
* emacs.c (main): Update the copyright year. From Werner LEMBERG
<wl@gnu.org>.
...
...
src/frame.c
View file @
6a65b1b5
...
...
@@ -809,8 +809,10 @@ DEFUN ("frame-list", Fframe_list, Sframe_list,
{
Lisp_Object
frames
;
frames
=
Fcopy_sequence
(
Vframe_list
);
#ifdef HAVE_WINDOW_SYSTEM
if
(
FRAMEP
(
tip_frame
))
frames
=
Fdelq
(
tip_frame
,
frames
);
#endif
return
frames
;
}
...
...
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