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
5fc05db0
Commit
5fc05db0
authored
Aug 18, 2009
by
Kenichi Handa
Browse files
*** empty log message ***
parent
34481ea1
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
0 deletions
+8
-0
src/ChangeLog
src/ChangeLog
+5
-0
src/fontset.c
src/fontset.c
+3
-0
No files found.
src/ChangeLog
View file @
5fc05db0
2009-08-17 Kenichi Handa <handa@m17n.org>
* fontset.c (Ffontset_font): If a nil element is found in a
font-group vector, break the loop.
2009-08-17 Chong Yidong <cyd@stupidchicken.com>
* process.c (status_notify): Don't perform redisplay.
...
...
src/fontset.c
View file @
5fc05db0
...
...
@@ -2083,6 +2083,7 @@ format is the same as above. */)
DEFUN
(
"fontset-font"
,
Ffontset_font
,
Sfontset_font
,
2
,
3
,
0
,
doc
:
/* Return a font name pattern for character CH in fontset NAME.
If NAME is t, find a pattern in the default fontset.
If NAME is nil, find a pattern in the fontset of the selected frame.
The value has the form (FAMILY . REGISTRY), where FAMILY is a font
family name and REGISTRY is a font registry name. This is actually
...
...
@@ -2115,6 +2116,8 @@ patterns. */)
Lisp_Object
family
,
registry
;
val
=
AREF
(
elt
,
j
);
if
(
NILP
(
val
))
break
;
repertory
=
AREF
(
val
,
1
);
if
(
INTEGERP
(
repertory
))
{
...
...
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