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
7bf1bb21
Commit
7bf1bb21
authored
Dec 05, 2008
by
Kenichi Handa
Browse files
(ftfont_shape_by_flt): Use "combining" flt if the
second character is a combining character.
parent
2fdc7d00
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
1 deletion
+8
-1
src/ChangeLog
src/ChangeLog
+6
-0
src/ftfont.c
src/ftfont.c
+2
-1
No files found.
src/ChangeLog
View file @
7bf1bb21
2008-12-05 Kenichi Handa <handa@m17n.org>
* ftfont.c (ftfont_shape_by_flt): Use "combining" flt if the
second character is a combining character.
2008-12-05 Eli Zaretskii <eliz@gnu.org>
* process.c (procfs_system_process_attributes): Don't use cmd,
...
...
@@ -23,6 +28,7 @@
* coding.c (decode_coding_charset): Check type of an element of
vector VALIDS.
(encode_coding_emacs_mule): Be sure to set `code'.
* fontset.c (face_for_char): Handle invalid charset property
correctly.
...
...
src/ftfont.c
View file @
7bf1bb21
...
...
@@ -1866,7 +1866,8 @@ ftfont_shape_by_flt (lgstring, font, ft_face, otf)
flt_font_ft
.
font
=
font
;
flt_font_ft
.
ft_face
=
ft_face
;
flt_font_ft
.
otf
=
otf
;
if
(
ASCII_CHAR_P
(
gstring
.
glyphs
[
0
].
c
))
if
(
len
>
1
&&
gstring
.
glyphs
[
1
].
c
>=
0x300
&&
gstring
.
glyphs
[
1
].
c
<=
0x36F
)
/* A little bit ad hoc. Perhaps, shaper must get script and
language information, and select a proper flt for them
here. */
...
...
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