Home
last modified time | relevance | path

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

/vim-8.2.3635/src/libvterm/src/
H A Dstate.c360 int glyph_ends; in on_text() local
364 for(glyph_ends = i + 1; glyph_ends < npoints; glyph_ends++) in on_text()
365 if(!vterm_unicode_is_combining(codepoints[glyph_ends])) in on_text()
368 chars = vterm_allocator_malloc(state->vt, (glyph_ends - glyph_starts + 1) * sizeof(uint32_t)); in on_text()
372 for( ; i < glyph_ends; i++) { in on_text()
391 chars[glyph_ends - glyph_starts] = 0; in on_text()
396 printf("DEBUG: COMBINED GLYPH of %d chars {", glyph_ends - glyph_starts); in on_text()
397 for(printpos = 0; printpos < glyph_ends - glyph_starts; printpos++) in on_text()