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
ea08011c
Commit
ea08011c
authored
Jan 26, 2011
by
Chong Yidong
Browse files
* src/font.c (font_parse_fcname): Fix typo in string length.
parent
0d19d4fe
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/font.c
src/font.c
+1
-1
No files found.
src/ChangeLog
View file @
ea08011c
2011-01-26 Chong Yidong <cyd@stupidchicken.com>
* font.c (font_parse_fcname): Fix typo in string length.
2011-01-24 Stefan Monnier <monnier@iro.umontreal.ca>
* xdisp.c (handle_fontified_prop): Be careful with font-lock changing
...
...
src/font.c
View file @
ea08011c
...
...
@@ -1603,7 +1603,7 @@ font_parse_fcname (name, font)
else
if
(
PROP_MATCH
(
"Italic"
,
6
))
{
prop_found
=
1
;
prop
=
font_intern_prop
(
"italic"
,
4
,
1
);
prop
=
font_intern_prop
(
"italic"
,
6
,
1
);
FONT_SET_STYLE
(
font
,
FONT_SLANT_INDEX
,
prop
);
}
else
if
(
PROP_MATCH
(
"Oblique"
,
7
))
...
...
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