summaryrefslogtreecommitdiff
path: root/zen/zstring.h
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2023-09-13 13:49:38 -0400
committerB. Stack <bgstack15@gmail.com>2023-09-13 13:49:38 -0400
commit7ed2158034ef5c26eed7fed9aa3c118d79a06fa8 (patch)
tree979e6628193f88d2140e722a3893321904869896 /zen/zstring.h
parentadd extra_log.h (diff)
downloadFreeFileSync-7ed2158034ef5c26eed7fed9aa3c118d79a06fa8.tar.gz
FreeFileSync-7ed2158034ef5c26eed7fed9aa3c118d79a06fa8.tar.bz2
FreeFileSync-7ed2158034ef5c26eed7fed9aa3c118d79a06fa8.zip
add upstream 13.013.0
Diffstat (limited to 'zen/zstring.h')
-rw-r--r--zen/zstring.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/zen/zstring.h b/zen/zstring.h
index 5bcc8b34..bf7ac526 100644
--- a/zen/zstring.h
+++ b/zen/zstring.h
@@ -84,9 +84,11 @@ const wchar_t EM_DASH = L'\u2014';
const wchar_t* const SPACED_DASH = L" \u2014 "; //using 'EM DASH'
const wchar_t* const ELLIPSIS = L"\u2026"; //"..."
const wchar_t MULT_SIGN = L'\u00D7'; //fancy "x"
-//const wchar_t NOBREAK_SPACE = L'\u00A0';
+const wchar_t NOBREAK_SPACE = L'\u00A0';
const wchar_t ZERO_WIDTH_SPACE = L'\u200B';
+const wchar_t EN_SPACE = L'\u2002';
+
const wchar_t LTR_MARK = L'\u200E'; //UTF-8: E2 80 8E
const wchar_t RTL_MARK = L'\u200F'; //UTF-8: E2 80 8F https://www.w3.org/International/questions/qa-bidi-unicode-controls
//const wchar_t BIDI_DIR_ISOLATE_RTL = L'\u2067'; //=> not working on Win 10
@@ -94,6 +96,8 @@ const wchar_t RTL_MARK = L'\u200F'; //UTF-8: E2 80 8F https://www.w3.org/Interna
//const wchar_t BIDI_DIR_EMBEDDING_RTL = L'\u202B'; //=> not working on Win 10
//const wchar_t BIDI_POP_DIR_FORMATTING = L'\u202C'; //=> not working on Win 10
+const wchar_t RIGHT_ARROW_CURV_DOWN = L'\u2935'; //Right Arrow Curving Down
+
const wchar_t* const TAB_SPACE = L" "; //4: the only sensible space count for tabs
#endif //ZSTRING_H_73425873425789
bgstack15