APPEND non-ascii runes in unicode escape format to fz_buffer.
(buff, ch)
| 18726 | |
| 18727 | |
| 18728 | def JM_append_rune(buff, ch): |
| 18729 | """ |
| 18730 | APPEND non-ascii runes in unicode escape format to fz_buffer. |
| 18731 | """ |
| 18732 | mupdf.fz_append_string(buff, make_escape(ch)) |
| 18733 | |
| 18734 | |
| 18735 | def JM_append_word(lines, buff, wbbox, block_n, line_n, word_n): |
no test coverage detected
searching dependent graphs…