Home
last modified time | relevance | path

Searched refs:glyph_ends (Results 1 – 1 of 1) sorted by relevance

/haiku/src/apps/serialconnect/libvterm/src/
H A Dstate.c271 int glyph_ends; in on_text() local
275 for(glyph_ends = i + 1; glyph_ends < npoints; glyph_ends++) in on_text()
276 if(!vterm_unicode_is_combining(codepoints[glyph_ends])) in on_text()
279 chars = alloca(glyph_ends - glyph_starts + 1); in on_text()
281 for( ; i < glyph_ends; i++) { in on_text()
286 chars[glyph_ends - glyph_starts] = 0; in on_text()
292 printf("DEBUG: COMBINED GLYPH of %d chars {", glyph_ends - glyph_starts); in on_text()
293 for(printpos = 0; printpos < glyph_ends - glyph_starts; printpos++) in on_text()