Merge branch '2081_edit_overwrite_fix'

* 2081_edit_overwrite_fix:
  Ticket #2081 (editor: incorrect overwrite text after input utf-8 chars)
This commit is contained in:
Ilia Maslakov 2010-04-06 15:11:57 +04:00
commit f0b5497730
1 changed files with 2 additions and 1 deletions

View File

@ -2946,7 +2946,8 @@ edit_execute_cmd (WEdit * edit, unsigned long command, int char_for_insertion)
{
if (edit->overwrite)
{
if (edit_get_byte (edit, edit->curs1) != '\n')
/* remove char only one time, after input first byte, multibyte chars */
if ((!utf8_display || edit->charpoint == 0) && edit_get_byte (edit, edit->curs1) != '\n')
edit_delete (edit, 0);
}
if (option_cursor_beyond_eol && edit->over_col > 0)