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
20c41c13
Commit
20c41c13
authored
May 31, 2007
by
Jason Rumney
Browse files
(fill_composite_glyph_string): Make the first arg to
STORE_XCHARB a valid l-value.
parent
b70be253
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
src/xdisp.c
src/xdisp.c
+3
-2
No files found.
src/xdisp.c
View file @
20c41c13
...
...
@@ -19154,11 +19154,12 @@ fill_composite_glyph_string (s, base_face, overlaps)
{
Lisp_Object g = LGSTRING_GLYPH (gstring, i);
unsigned code;
XChar2b * store_pos;
if (NILP (LGLYPH_FROM (g)))
break;
code = XUINT (LGLYPH_CODE (g));
STORE_XCHAR2B (s->char2b + i, code >> 8, code & 0xFF);
store_pos = s->char2b + i;
STORE_XCHAR2B (store_pos, code >> 8, code & 0xFF);
}
s->width = s->cmp->pixel_width;
}
...
...
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