mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 01:59:02 +00:00
Fix bug #10930.
This commit is contained in:
parent
6ef17af2b7
commit
6d565300be
@ -190,10 +190,10 @@ void Trans::addDeadkey(tex_accent accent, docstring const & keys)
|
||||
// FIXME This is a hack.
|
||||
// tmp is no valid UCS4 string, but misused to store the
|
||||
// accent.
|
||||
docstring tmp;
|
||||
tmp += char_type(0);
|
||||
tmp += char_type(accent);
|
||||
keymap_[keys[i]] = tmp;
|
||||
docstring tmpd;
|
||||
tmpd += char_type(0);
|
||||
tmpd += char_type(accent);
|
||||
keymap_[keys[i]] = tmpd;
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user