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
f29173c9
Commit
f29173c9
authored
Apr 12, 2002
by
Eli Zaretskii
Browse files
(frames-on-display-list): Use `equal' to compare the
`display' frame parameter to the argument DISPLAY.
parent
ec2bb97f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletion
+6
-1
lisp/ChangeLog
lisp/ChangeLog
+5
-0
lisp/frame.el
lisp/frame.el
+1
-1
No files found.
lisp/ChangeLog
View file @
f29173c9
2002-04-12 Eli Zaretskii <eliz@is.elta.co.il>
* frame.el (frames-on-display-list): Use `equal' to compare the
`display' frame parameter to the argument DISPLAY.
2002-04-12 Dave Love <fx@gnu.org>
* help.el (string-key-binding): Deal with margin events.
...
...
lisp/frame.el
View file @
f29173c9
...
...
@@ -606,7 +606,7 @@ DISPLAY is a name of a display, a string of the form HOST:SERVER.SCREEN.
If DISPLAY is omitted or nil, it defaults to the selected frame's display."
(
let*
((
display
(
or
display
(
frame-parameter
nil
'display
)))
(
func
#'
(
lambda
(
frame
)
(
eq
(
frame-parameter
frame
'display
)
display
))))
(
eq
ual
(
frame-parameter
frame
'display
)
display
))))
(
filtered-frame-list
func
)))
(
defun
framep-on-display
(
&optional
display
)
...
...
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