diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2020-02-20 13:51:22 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2020-02-24 10:56:47 +0100 |
commit | 5521fc8d7175abd8fe2b457c677c6fab38114778 (patch) | |
tree | 8e588798ea844da015640589d809293699f550ff | |
parent | 0891e60ab601e2cfdf9c7a142c9a3538f7df01fa (diff) |
tdf#130426 Update documentation for Basic Chr and ChrW functionscp-6.4-branch-point
...for <https://gerrit.libreoffice.org/c/core/+/89090> "tdf#130426 Support Basic
Chr(&H8000), ..., Chr(&HFFFF) again"
Change-Id: I425a55ba1b055f94d993bb99c5412cc0414dc48d
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/89100
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
(cherry picked from commit bf2dff69f84ad28836924d3bf311910248aca1f9)
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/89126
Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
-rw-r--r-- | source/text/sbasic/shared/03120102.xhp | 2 | ||||
-rw-r--r-- | source/text/sbasic/shared/03120112.xhp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/source/text/sbasic/shared/03120102.xhp b/source/text/sbasic/shared/03120102.xhp index b516500fe8..a18c3beb1b 100644 --- a/source/text/sbasic/shared/03120102.xhp +++ b/source/text/sbasic/shared/03120102.xhp @@ -42,7 +42,7 @@ <paragraph id="par_id3153824" role="paragraph" xml-lang="en-US">String</paragraph> <embed href="text/sbasic/shared/00000003.xhp#functparameters"/> - <paragraph id="par_id3149295" role="paragraph" xml-lang="en-US"> <emph>Expression:</emph> a numeric expression that represents a valid 8-bit ASCII value (0-255) or a 16-bit Unicode value.</paragraph> + <paragraph id="par_id3149295" role="paragraph" xml-lang="en-US"> <emph>Expression:</emph> a numeric expression that represents a valid 8-bit ASCII value (0-255) or a 16-bit Unicode value. (To support expressions with a nominally negative argument like <emph>Chr(&H8000)</emph> in a backwards-compatible way, values in the range −32768 to −1 are internally mapped to the range 32768 to 65535.)</paragraph> <warning id="par_id991552913928635">When VBA compatibility mode is enabled (<link href="text/sbasic/shared/03103350.xhp" name="vbasupport"><literal>OPTION VBASUPPORT 1</literal></link>), <emph>Expression</emph> is a numeric expression that represents a valid 8-bit ASCII value (0-255) only.</warning> diff --git a/source/text/sbasic/shared/03120112.xhp b/source/text/sbasic/shared/03120112.xhp index cb3394daba..39f9cebee0 100644 --- a/source/text/sbasic/shared/03120112.xhp +++ b/source/text/sbasic/shared/03120112.xhp @@ -45,7 +45,7 @@ <embed href="text/sbasic/shared/00000003.xhp#functvalue"/> <paragraph id="par_id3153824" role="paragraph" xml-lang="en-US">String</paragraph> <embed href="text/sbasic/shared/00000003.xhp#functparameters"/> -<paragraph id="par_id3149295" role="paragraph" xml-lang="en-US"> <emph>Expression:</emph> Numeric variables that represent a valid 16 bit Unicode value (0-65535). An empty value returns error code 5. A value out of the range [0,65535] returns error code 6.</paragraph> +<paragraph id="par_id3149295" role="paragraph" xml-lang="en-US"> <emph>Expression:</emph> Numeric variables that represent a valid 16 bit Unicode value (0-65535). (To support expressions with a nominally negative argument like <emph>ChrW(&H8000)</emph> in a backwards-compatible way, values in the range −32768 to −1 are internally mapped to the range 32768 to 65535.) An empty value returns error code 5. A value out of the range [0,65535] returns error code 6.</paragraph> <embed href="text/sbasic/shared/00000003.xhp#errorcode"/> <embed href="text/sbasic/shared/00000003.xhp#err5"/> <embed href="text/sbasic/shared/00000003.xhp#err6"/> |