diff options
author | Zufu Liu <unknown> | 2025-05-24 17:43:14 +1000 |
---|---|---|
committer | Zufu Liu <unknown> | 2025-05-24 17:43:14 +1000 |
commit | aca9ce76597949b0429caa882df164702cdb92b0 (patch) | |
tree | 44756e3627ebc4b1ab19d3c086e12cc14faa8bef /src/DBCS.h | |
parent | 32f7837ed8b70cf20e15ef34ef8448d18909910a (diff) | |
download | scintilla-mirror-aca9ce76597949b0429caa882df164702cdb92b0.tar.gz |
Remove line end space.
Diffstat (limited to 'src/DBCS.h')
-rw-r--r-- | src/DBCS.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/DBCS.h b/src/DBCS.h index ba6230649..96d282446 100644 --- a/src/DBCS.h +++ b/src/DBCS.h @@ -28,7 +28,7 @@ bool DBCSIsLeadByte(int codePage, char ch) noexcept; bool DBCSIsTrailByte(int codePage, char ch) noexcept; bool IsDBCSValidSingleByte(int codePage, int ch) noexcept; -// Calculate a number from a DBCS byte pair that can be used to index into an array or map. +// Calculate a number from a DBCS byte pair that can be used to index into an array or map. // Should only be called with genuine DBCS character pairs which means that ch1 has top bit set. constexpr uint16_t DBCSIndex(char ch1, char ch2) noexcept { const unsigned char uch1 = ch1 & 0x7F; |