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
587cb9a7
Commit
587cb9a7
authored
Sep 27, 2002
by
Kenichi Handa
Browse files
(display_string): Fix for the case of zero width glyph.
parent
6ca54a3a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
src/xdisp.c
src/xdisp.c
+1
-1
No files found.
src/xdisp.c
View file @
587cb9a7
...
...
@@ -14611,7 +14611,7 @@ display_string (string, lisp_string, face_string, face_string_pos,
}
break;
}
else if (x + glyph->pixel_width > it->first_visible_x)
else if (x + glyph->pixel_width >
=
it->first_visible_x)
{
/* Glyph is at least partially visible. */
++it->hpos;
...
...
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