Skip to content
Merged
Changes from 1 commit
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
Next Next commit
Fix wrong comments in EUC-KR codec
  • Loading branch information
b8choi committed Mar 4, 2023
commit 09c77d2362764f90c7834988ad79a6aef52999f7
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