Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
67d853e6
Commit
67d853e6
authored
Sep 07, 2000
by
Gerd Moellmann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(Fframe_parameter): Handle `name' specially.
parent
0da3ecef
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
7 deletions
+12
-7
src/frame.c
src/frame.c
+12
-7
No files found.
src/frame.c
View file @
67d853e6
...
...
@@ -2104,14 +2104,19 @@ If FRAME is nil, describe the currently selected frame.")
if
(
FRAME_LIVE_P
(
f
))
{
value
=
Fassq
(
parameter
,
f
->
param_alist
);
if
(
CONSP
(
value
))
value
=
XCDR
(
value
);
else
if
(
EQ
(
parameter
,
Qdisplay_type
))
/* Avoid consing in a frequent case. */
value
=
Qnil
;
if
(
EQ
(
parameter
,
Qname
))
value
=
f
->
name
;
else
value
=
Fcdr
(
Fassq
(
parameter
,
Fframe_parameters
(
frame
)));
{
value
=
Fassq
(
parameter
,
f
->
param_alist
);
if
(
CONSP
(
value
))
value
=
XCDR
(
value
);
else
if
(
EQ
(
parameter
,
Qdisplay_type
))
/* Avoid consing in a frequent case. */
value
=
Qnil
;
else
value
=
Fcdr
(
Fassq
(
parameter
,
Fframe_parameters
(
frame
)));
}
}
return
value
;
...
...
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