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
9fe78804
Commit
9fe78804
authored
Jan 28, 2009
by
Kenichi Handa
Browse files
(font_for_char): Use assq_no_quit, not assoc_no_quit.
parent
685b5479
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletion
+5
-1
src/ChangeLog
src/ChangeLog
+4
-0
src/fontset.c
src/fontset.c
+1
-1
No files found.
src/ChangeLog
View file @
9fe78804
2009-01-28 Kenichi Handa <handa@m17n.org>
* fontset.c (font_for_char): Use assq_no_quit, not assoc_no_quit.
2009-01-27 Chong Yidong <cyd@stupidchicken.com>
* fns.c (concat): Check for string overflow (bug#1787).
...
...
src/fontset.c
View file @
9fe78804
...
...
@@ -970,7 +970,7 @@ font_for_char (face, c, pos, object)
{
Lisp_Object
val
;
val
=
ass
oc
_no_quit
(
charset
,
Vfont_encoding_charset_alist
);
val
=
ass
q
_no_quit
(
charset
,
Vfont_encoding_charset_alist
);
if
(
CONSP
(
val
)
&&
CHARSETP
(
XCDR
(
val
)))
charset
=
XCDR
(
val
);
id
=
XINT
(
CHARSET_SYMBOL_ID
(
charset
));
...
...
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