mirror of
https://github.com/MariaDB/server.git
synced 2026-05-04 14:15:33 +02:00
automerge
This commit is contained in:
commit
5fc05b9528
5 changed files with 11 additions and 5 deletions
|
|
@ -699,8 +699,10 @@ rl_function_of_keyseq (keyseq, map, type)
|
|||
|
||||
for (i = 0; keyseq && keyseq[i]; i++)
|
||||
{
|
||||
unsigned char ic = keyseq[i];
|
||||
unsigned char uc = keyseq[i];
|
||||
int ic;
|
||||
|
||||
ic= uc;
|
||||
if (META_CHAR (ic) && _rl_convert_meta_chars_to_ascii)
|
||||
{
|
||||
if (map[ESC].type == ISKMAP)
|
||||
|
|
|
|||
|
|
@ -1888,7 +1888,7 @@ rl_character_len (c, pos)
|
|||
|
||||
uc = (unsigned char)c;
|
||||
|
||||
if (META_CHAR (uc))
|
||||
if (META_CHAR (c))
|
||||
return ((_rl_output_meta_chars == 0) ? 4 : 1);
|
||||
|
||||
if (uc == '\t')
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue