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
18f39d0e
Commit
18f39d0e
authored
Sep 13, 1999
by
Gerd Moellmann
Browse files
(Ffont_info): Change for Lisp_Object selected_frame.
(Ffontset_info): DItto.
parent
74c2d1c6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
12 deletions
+6
-12
src/fontset.c
src/fontset.c
+6
-12
No files found.
src/fontset.c
View file @
18f39d0e
...
...
@@ -709,12 +709,9 @@ If the named font is not yet loaded, return nil.")
CHECK_STRING (name, 0);
if (NILP (frame))
f = selected_frame;
else
{
CHECK_LIVE_FRAME (frame, 1);
f = XFRAME (frame);
}
frame = selected_frame;
CHECK_LIVE_FRAME (frame, 1);
f = XFRAME (frame);
if (!query_font_func)
error ("Font query function is not supported");
...
...
@@ -761,12 +758,9 @@ loading failed.")
CHECK_STRING(name, 0);
if (NILP (frame))
f = selected_frame;
else
{
CHECK_LIVE_FRAME (frame, 1);
f = XFRAME (frame);
}
frame = selected_frame;
CHECK_LIVE_FRAME (frame, 1);
f = XFRAME (frame);
fontset = fs_query_fontset (f, XSTRING (name)->data);
if (fontset < 0)
...
...
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