Skip to content

Commit

Permalink
decode (rlfunc): fix up 3559658 again
Browse files Browse the repository at this point in the history
  • Loading branch information
akinomyoga committed Feb 21, 2021
1 parent beb0383 commit 37363be
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion memo/ChangeLog.md
Expand Up @@ -54,7 +54,7 @@
- bind: work around broken `cmd_xmap` after switching the editing mode `#D1478` 8d354c1
- edit: clear graphic rendition on newlines and external commands `#D1479` 18bb2d5
- mandb: improve extraction and cache for each locale `#D1480` 3588158
- decode (rlfunc): work around incomplete bytes in keyseq (reported by onelittlehope) `#D1483` 3559658 0000000
- decode (rlfunc): work around incomplete bytes in keyseq (reported by onelittlehope) `#D1483` 3559658 beb0383 0000000

## Internal changes and fixes

Expand Down
3 changes: 3 additions & 0 deletions note.txt
Expand Up @@ -3806,6 +3806,9 @@ bash_tips
https://github.com/akinomyoga/ble.sh/issues/89#issuecomment-782824259
追記: 簡単なミスをしていた。修正する。

https://github.com/akinomyoga/ble.sh/issues/89#issuecomment-782827987
追記: まだ駄目だった。何度でも同じミスをしている…。ちゃんと実際にテストしなければならない。

2021-02-20

* complete/mabdb: man awk の内容を抽出しきれていない [#D1480]
Expand Down
2 changes: 1 addition & 1 deletion src/util.sh
Expand Up @@ -5031,7 +5031,7 @@ function ble/util/keyseq2chars {
keyseq=${keyseq:${#text}}
ble/util/s2chars "$text"
else
keyseq=${keyseq:$1+${#esc}}
keyseq=${keyseq:1+${#esc}}
ret=()
case $esc in
([CM]-) mods=$mods${esc::1}; continue ;;
Expand Down

0 comments on commit 37363be

Please sign in to comment.