aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc_src
diff options
context:
space:
mode:
authorGravatar axel <axel@liljencrantz.se>2006-02-24 22:18:29 +1000
committerGravatar axel <axel@liljencrantz.se>2006-02-24 22:18:29 +1000
commit1075ca69b0ef393b78952c0de639252fb70d559d (patch)
tree3a39e680d379361071bfb25559d817d271251eaf /doc_src
parente29f5c5474ab59a2487cd5216810b090cd2b13f6 (diff)
Switch to standard syntax for octal escapes
darcs-hash:20060224121829-ac50b-8e19f27857378e6456ae08269721138bd60f3464.gz
Diffstat (limited to 'doc_src')
-rw-r--r--doc_src/doc.hdr2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc_src/doc.hdr b/doc_src/doc.hdr
index 8e31346d..9ceddfc5 100644
--- a/doc_src/doc.hdr
+++ b/doc_src/doc.hdr
@@ -115,7 +115,7 @@ these characters, so called escape sequences are provided. These are:
- <code>'\\^'</code>, escapes the circumflex character
- <code>'\\x<i>xx</i>'</code>, where <code><i>xx</i></code> is a hexadecimal number, escapes the ascii character with the specified value
- <code>'\\X<i>xx</i>'</code>, where <code><i>xx</i></code> is a hexadecimal number, escapes a byte of data with the specified value. If you are using a mutibyte encoding, this can be used to enter invalid strings. Only use this if you know what you are doing.
-- <code>'\\o<i>ooo</i>'</code>, where <code><i>ooo</i></code> is an octal number, escapes the ascii character with the specified value
+- <code>'\\<i>ooo</i>'</code>, where <code><i>ooo</i></code> is an octal number, escapes the ascii character with the specified value
- <code>'\\u<i>xxxx</i>'</code>, where <code><i>xxxx</i></code> is a hexadecimal number, escapes the 16-bit unicode character with the specified value
- <code>'\\U<i>xxxxxxxx</i>'</code>, where <code><i>xxxxxxxx</i></code> is a hexadecimal number, escapes the 32-bit unicode character with the specified value