projects
/
m17n
/
m17n-lib.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d588e31
)
(render_glyphs): Check gend->type before checking
author
handa
<handa>
Fri, 14 Oct 2005 02:22:04 +0000
(
02:22
+0000)
committer
handa
<handa>
Fri, 14 Oct 2005 02:22:04 +0000
(
02:22
+0000)
gend->to.
src/draw.c
patch
|
blob
|
history
diff --git
a/src/draw.c
b/src/draw.c
index
80925c3
..
671acc8
100644
(file)
--- a/
src/draw.c
+++ b/
src/draw.c
@@
-1261,7
+1261,8
@@
render_glyphs (MFrame *frame, MDrawWindow win, int x, int y, int width,
gend--;
}
if (g != gend)
- while (gend[-1].to == gend->to) gend++;
+ while (gend->type != GLYPH_ANCHOR && gend[-1].to == gend->to)
+ gend++;
}
}