[q-lang-cvs] q/doc qdoc.texi,1.139,1.140 version.texi,1.93,1.94
Brought to you by:
agraef
From: Albert G. <ag...@us...> - 2008-01-16 08:30:26
|
Update of /cvsroot/q-lang/q/doc In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv28393 Modified Files: qdoc.texi version.texi Log Message: update documentation Index: qdoc.texi =================================================================== RCS file: /cvsroot/q-lang/q/doc/qdoc.texi,v retrieving revision 1.139 retrieving revision 1.140 diff -C2 -d -r1.139 -r1.140 *** qdoc.texi 13 Jan 2008 21:02:44 -0000 1.139 --- qdoc.texi 16 Jan 2008 08:30:22 -0000 1.140 *************** *** 1745,1748 **** --- 1745,1761 ---- happens to be a valid digit, as in @code{"\(123)4"}. + As of version 7.11 and later, the interpreter also supports symbolic + character escapes of the form @samp{\&@var{name};}, where @var{name} is + any of the XML single character entity names specified in the ``XML + Entity definitions for Characters'', see + @url{http://www.w3.org/TR/xml-entity-names/}. Note that, at the time of + this writing, this is still a W3C working draft, so the supported entity + names may be subject to change until the final specification comes out; + the currently supported entities are described in the draft from 14 + December 2007, see + @url{http://www.w3.org/TR/2007/WD-xml-entity-names-20071214/}. Also note + that multi-character entities are @emph{not} supported in this + implementation. + A string may also be continued across lines by putting the @code{\} character immediately before the end of the line, which causes the *************** *** 1750,1755 **** As of Q 7.0, it is a syntax error if a character escape is not ! recognized as either a numeric escape or one of the special escapes in ! the list above. Some examples: --- 1763,1768 ---- As of Q 7.0, it is a syntax error if a character escape is not ! recognized as either a numeric escape or one of the special escapes ! listed above. Some examples: *************** *** 1762,1765 **** --- 1775,1779 ---- "\0x1b" @r{same in hexadecimal} "\(0x1b)c" @r{ASCII escape followed by a literal @samp{c} character} + "Gr\äf" @r{German umlaut, using XML entity escape} "a string" @r{multiple character string} "a \"quoted\" string" @r{include double quotes} Index: version.texi =================================================================== RCS file: /cvsroot/q-lang/q/doc/version.texi,v retrieving revision 1.93 retrieving revision 1.94 diff -C2 -d -r1.93 -r1.94 *** version.texi 13 Jan 2008 21:02:44 -0000 1.93 --- version.texi 16 Jan 2008 08:30:22 -0000 1.94 *************** *** 1,3 **** ! @set UPDATED 13 January 2008 @set UPDATED-MONTH January 2008 @set EDITION 7.10 --- 1,3 ---- ! @set UPDATED 16 January 2008 @set UPDATED-MONTH January 2008 @set EDITION 7.10 |