aboutsummaryrefslogtreecommitdiffstats
path: root/docbook
diff options
context:
space:
mode:
authorJoão Valverde <j@v6e.pt>2022-06-20 22:05:48 +0100
committerJoão Valverde <j@v6e.pt>2022-06-21 16:54:16 +0100
commit354e0d7edf6170be13ed545111303332ecae5c3d (patch)
tree6d63224bd78d67926a41b23a1a4a5273c823f805 /docbook
parent47348ae598127aa8bd46d5c650c6f1f77eef2bc4 (diff)
dfilter: Add support for unicode escape sequences
Add support for entering unicode codepoints as \uNNNN or \uNNNNNNNN for strings and charconsts (following the C standard).
Diffstat (limited to 'docbook')
-rw-r--r--docbook/release-notes.adoc1
1 files changed, 1 insertions, 0 deletions
diff --git a/docbook/release-notes.adoc b/docbook/release-notes.adoc
index b3dcb68058..56db7b5083 100644
--- a/docbook/release-notes.adoc
+++ b/docbook/release-notes.adoc
@@ -120,6 +120,7 @@ They previously shipped with Qt 5.12.2.
** Support for some additional character escape sequences in double quoted strings has been added.
Along with octal (\<number>) and hex (\x<number>) encoding, the following C escape sequences are now supported with the same meaning: \a, \b, \f, \n, \r, \t, \v.
Previously they were only supported with character constants.
+** Unicode universal character names are now supported with the escape sequences \uNNNN or \UNNNNNNNN, where N is an hexadecimal digit.
** Unrecognized escape sequences are now treated as a syntax error.
Previously they were treated as a literal character.
In addition to the sequences indicated above, backslash, single quotation and double quotation mark are also valid sequences: \\, \', \".