Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

gh-101863: Fix wrong comments in EUC-KR codec #102417

Merged
merged 2 commits into from
Mar 4, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Misc/ACKS
Original file line number Diff line number Diff line change
Expand Up @@ -322,6 +322,7 @@ Adal Chiriliuc
Matt Chisholm
Lita Cho
Kit Yan Choi
Byeongmin Choi
Sayan Chowdhury
Yuan-Chao Chou
Anders Chrigström
Expand Down
4 changes: 2 additions & 2 deletions Modules/cjkcodecs/_codecs_kr.c
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ ENCODER(euc_kr)
}
else {
/* Mapping is found in CP949 extension,
but we encode it in KS X 1001:1998 Annex 3,
but we encode it in KS X 1001:1998,
make-up sequence for EUC-KR. */

REQUIRE_OUTBUF(8);
Expand Down Expand Up @@ -120,7 +120,7 @@ DECODER(euc_kr)

if (c == EUCKR_JAMO_FIRSTBYTE &&
INBYTE2 == EUCKR_JAMO_FILLER) {
/* KS X 1001:1998 Annex 3 make-up sequence */
/* KS X 1001:1998 make-up sequence */
DBCHAR cho, jung, jong;

REQUIRE_INBUF(8);
Expand Down