diff options
author | Domen Kožar <domen@enlambda.com> | 2017-10-30T11·21+0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-30T11·21+0100 |
commit | 5cb78053f01ec82bcb8034a0afefa44fc82b5e72 (patch) | |
tree | d0b2c0028d7a5c73ddc428e82820eace6d410caa /doc/manual/expressions/language-values.xml | |
parent | e38382895deef4c136b7425f480884d122f3c5ae (diff) | |
parent | 842ce8bafd89a896680d8614ffb2b08b6b38452a (diff) |
Merge pull request #1633 from orivej/doc
Update the language documentation
Diffstat (limited to 'doc/manual/expressions/language-values.xml')
-rw-r--r-- | doc/manual/expressions/language-values.xml | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/doc/manual/expressions/language-values.xml b/doc/manual/expressions/language-values.xml index 67da688a4fc5..bb2090c881fd 100644 --- a/doc/manual/expressions/language-values.xml +++ b/doc/manual/expressions/language-values.xml @@ -98,13 +98,17 @@ configureFlags = " <para>Since <literal>${</literal> and <literal>''</literal> have special meaning in indented strings, you need a way to quote them. - <literal>${</literal> can be escaped by prefixing it with + <literal>$</literal> can be escaped by prefixing it with <literal>''</literal> (that is, two single quotes), i.e., - <literal>''${</literal>. <literal>''</literal> can be escaped by + <literal>''$</literal>. <literal>''</literal> can be escaped by prefixing it with <literal>'</literal>, i.e., - <literal>'''</literal>. Finally, linefeed, carriage-return and - tab characters can be written as <literal>''\n</literal>, - <literal>''\r</literal>, <literal>''\t</literal>.</para> + <literal>'''</literal>. <literal>$</literal> removes any special meaning + from the following <literal>$</literal>. Linefeed, carriage-return and tab + characters can be written as <literal>''\n</literal>, + <literal>''\r</literal>, <literal>''\t</literal>, and <literal>''\</literal> + escapes any other character. + + </para> <para>Indented strings are primarily useful in that they allow multi-line string literals to follow the indentation of the |