Update of /cvsroot/q-lang/q/doc
In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv24776
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.143
retrieving revision 1.144
diff -C2 -d -r1.143 -r1.144
*** qdoc.texi 22 Jan 2008 12:41:38 -0000 1.143
--- qdoc.texi 23 Jan 2008 06:23:38 -0000 1.144
***************
*** 12749,12753 ****
@smallexample
! ==> import system // if necessary
==> readline "input> "
--- 12749,12753 ----
@smallexample
! ==> import system
==> readline "input> "
***************
*** 13042,13046 ****
@smallexample
! ==> import system // if necessary
==> uname
--- 13042,13046 ----
@smallexample
! ==> import system
==> uname
***************
*** 14509,14514 ****
@smallexample
- ==> import system
-
==> map (fnmatch "*.q") ["clib.q","clib.c"]
[true,false]
--- 14509,14512 ----
***************
*** 14560,14564 ****
@cindex regular expressions
! The @code{system} module implements regular expression matching using the
POSIX @code{regcomp} and @code{regexec} functions. Regular expressions
are generally specified using the @dfn{extended} (@code{egrep}-like)
--- 14558,14562 ----
@cindex regular expressions
! The @code{clib} module implements regular expression matching using the
POSIX @code{regcomp} and @code{regexec} functions. Regular expressions
are generally specified using the @dfn{extended} (@code{egrep}-like)
***************
*** 14795,14800 ****
@smallexample
- ==> import system // if needed
-
==> regex "g" "[A-Za-z][A-Za-z0-9]*" "1var foo 99 BAR $%&" (reg 0)
["var","foo","BAR"]
--- 14793,14796 ----
Index: version.texi
===================================================================
RCS file: /cvsroot/q-lang/q/doc/version.texi,v
retrieving revision 1.97
retrieving revision 1.98
diff -C2 -d -r1.97 -r1.98
*** version.texi 22 Jan 2008 12:41:38 -0000 1.97
--- version.texi 23 Jan 2008 06:23:38 -0000 1.98
***************
*** 1,3 ****
! @set UPDATED 22 January 2008
@set UPDATED-MONTH January 2008
@set EDITION 7.11
--- 1,3 ----
! @set UPDATED 23 January 2008
@set UPDATED-MONTH January 2008
@set EDITION 7.11
|