aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/DBCS.h
diff options
context:
space:
mode:
authorZufu Liu <unknown>2025-05-24 17:43:14 +1000
committerZufu Liu <unknown>2025-05-24 17:43:14 +1000
commitaca9ce76597949b0429caa882df164702cdb92b0 (patch)
tree44756e3627ebc4b1ab19d3c086e12cc14faa8bef /src/DBCS.h
parent32f7837ed8b70cf20e15ef34ef8448d18909910a (diff)
downloadscintilla-mirror-aca9ce76597949b0429caa882df164702cdb92b0.tar.gz
Remove line end space.
Diffstat (limited to 'src/DBCS.h')
-rw-r--r--src/DBCS.h2
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;