From 9d9869e51583c32df65dda0d0d326b1c625925d8 Mon Sep 17 00:00:00 2001 From: axel Date: Wed, 17 Jan 2007 02:48:34 +1000 Subject: [PATCH] Documentation touchup. Give a few examples in the section about escapeing characters darcs-hash:20070116164834-ac50b-dd4c23ae1b8e35bbb2d3e186c2a819d8f2647ec2.gz --- doc_src/index.hdr.in | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/doc_src/index.hdr.in b/doc_src/index.hdr.in index 172779ab2..c85f7127e 100644 --- a/doc_src/index.hdr.in +++ b/doc_src/index.hdr.in @@ -135,11 +135,12 @@ these characters, so called escape sequences are provided. These are: - '\\\<', escapes the less than character - '\\\>', escapes the more than character - '\\^', escapes the circumflex character -- '\\xxx', where xx is a hexadecimal number, escapes the ascii character with the specified value +- '\\xxx', where xx is a hexadecimal number, escapes the ascii character with the specified value. For example, \\x9 is the tab character. - '\\Xxx', where xx 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. -- '\\ooo', where ooo is an octal number, escapes the ascii character with the specified value -- '\\uxxxx', where xxxx is a hexadecimal number, escapes the 16-bit unicode character with the specified value -- '\\Uxxxxxxxx', where xxxxxxxx is a hexadecimal number, escapes the 32-bit unicode character with the specified value +- '\\ooo', where ooo is an octal number, escapes the ascii character with the specified value. For example, \\011 is the tab character. +- '\\uxxxx', where xxxx is a hexadecimal number, escapes the 16-bit unicode character with the specified value. For example, \\u9 is the tab character. +- '\\Uxxxxxxxx', where xxxxxxxx is a hexadecimal number, escapes the 32-bit unicode character with the specified value. For example, \\U9 is the tab character. +- '\\cx', where x is a letter of the alphabet, escapes the control sequence generated by pressing the control key and the specified letter. For example, \\ci is the tab character \subsection redirects IO redirection @@ -1423,7 +1424,6 @@ g++, javac, java, gcj, lpr, doxygen, whois) - Suspending and then resuming pipelines containing a builtin is broken. How should this be handled? - delete-word is broken on the commandline 'sudo update-alternatives --config x-' - If you think you have found a bug not described here, please send a report to fish-users@lists.sf.net.