mirror of
https://github.com/rkd77/elinks.git
synced 2024-10-05 04:24:03 -04:00
Correct computing of cursor position in UTF-8 textarea.
This commit is contained in:
parent
f9d67aeb73
commit
81778bc5d7
@ -1634,12 +1634,12 @@ field_op(struct session *ses, struct document_view *doc_view,
|
||||
i = 0;
|
||||
break;
|
||||
}
|
||||
|
||||
if (i == 6) {
|
||||
i = 0;
|
||||
return FRAME_EVENT_OK;
|
||||
} else {
|
||||
return FRAME_EVENT_OK;
|
||||
}
|
||||
return FRAME_EVENT_OK;
|
||||
|
||||
} else {
|
||||
if (!insert_in_string(&fs->value, fs->state, "?", 1))
|
||||
return FRAME_EVENT_OK;
|
||||
|
@ -95,9 +95,9 @@ format_textutf8(unsigned char *text, int width, enum form_wrap wrap, int format)
|
||||
pos = wrappos - text;
|
||||
}
|
||||
skip = !!wrappos;
|
||||
char_cnt = 0;
|
||||
wrappos = NULL;
|
||||
}
|
||||
char_cnt = 0;
|
||||
wrappos = NULL;
|
||||
|
||||
if (!realloc_line_info(&line, line_number)) {
|
||||
mem_free_if(line);
|
||||
@ -238,10 +238,13 @@ area_cursor(struct form_control *fc, struct form_state *fs)
|
||||
}
|
||||
#ifdef CONFIG_UTF_8
|
||||
if (utf8) {
|
||||
unsigned char *text = fs->value + line[y].start;
|
||||
unsigned char *text = fs->value;
|
||||
unsigned char tmp = fs->value[fs->state];
|
||||
|
||||
fs->value[fs->state] = '\0';
|
||||
fs->utf8_pos = strlen_utf8(&text);
|
||||
|
||||
text = fs->value + line[y].start;
|
||||
x = strlen_utf8(&text);
|
||||
fs->value[fs->state] = tmp;
|
||||
} else
|
||||
|
Loading…
Reference in New Issue
Block a user