summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorReuben Thomas <rrt@sc3d.org>2010-07-31 18:52:46 +0100
committerReuben Thomas <rrt@sc3d.org>2010-07-31 18:52:46 +0100
commit02d7f1820a2085b6e074da893332587d100f94ef (patch)
tree0f1b6616c99bf80f44f91f9253da19ff2d038d71 /doc
parentea463d5127d49647c190108322b2d1624ee42add (diff)
downloadlrexlib-02d7f1820a2085b6e074da893332587d100f94ef.tar.gz
Merge duplicate material between index.txt and manual.txt.
Fix names of GNU and TRE shared library files in manual.txt.
Diffstat (limited to 'doc')
-rwxr-xr-xdoc/index.txt23
-rw-r--r--doc/manual.txt19
2 files changed, 16 insertions, 26 deletions
diff --git a/doc/index.txt b/doc/index.txt
index 3537195..c585a3c 100755
--- a/doc/index.txt
+++ b/doc/index.txt
@@ -4,14 +4,21 @@ Lrexlib 2.5
| by Reuben Thomas (rrt@sc3d.org)
| and Shmuel Zeigerman (shmuz@013net.net) [maintainer]
-
-Lrexlib is a binding of five regular expression library APIs (POSIX,
-PCRE, GNU, TRE and Oniguruma) to Lua 5.1.
-
-Lrexlib is copyright Reuben Thomas 2000-2010 and copyright Shmuel
-Zeigerman 2004-2010, and is released under the same license as Lua,
-the MIT license (otherwise known as the revised BSD license). There is
-no warranty.
+**Lrexlib** provides bindings of five regular expression library APIs
+(POSIX_, PCRE_, GNU_, TRE_ and Oniguruma_) to Lua_ 5.1.
+
+**Lrexlib** is copyright Reuben Thomas 2000-2010 and copyright Shmuel
+Zeigerman 2004-2010, and is released under under the license as Lua,
+the MIT_ license (otherwise known as the revised BSD license). There
+is no warranty.
+
+.. _POSIX: http://www.opengroup.org/onlinepubs/009695399/basedefs/xbd_chap09.html
+.. _PCRE: http://www.pcre.org/pcre.txt
+.. _GNU: ftp://ftp.gnu.org/old-gnu/regex/
+.. _Oniguruma: http://www.geocities.jp/kosako3/oniguruma/doc/RE.txt
+.. _TRE: http://laurikari.net/tre/documentation/
+.. _Lua: http://www.lua.org
+.. _MIT: http://www.opensource.org/licenses/mit-license.php
Please report bugs and make suggestions to the maintainer, or use the
LuaForge trackers and mailing lists.
diff --git a/doc/manual.txt b/doc/manual.txt
index 890f9df..89187ae 100644
--- a/doc/manual.txt
+++ b/doc/manual.txt
@@ -7,27 +7,10 @@ Lrexlib 2.5 Reference Manual
------------------------------------------------------------
-Introduction
-~~~~~~~~~~~~
-
-**Lrexlib** provides bindings of five regular expression library APIs
-(POSIX_, PCRE_, GNU_, TRE_ and Oniguruma_) to Lua_ 5.1.
-
**Lrexlib** builds into shared libraries called by default *rex_posix.so*,
-*rex_pcre.so*, *rex_gnu*, *rex_tre* and *rex_onig.so*, which can be used with
+*rex_pcre.so*, *rex_gnu.so*, *rex_tre.so* and *rex_onig.so*, which can be used with
*require*.
-**Lrexlib** is copyright Reuben Thomas 2000-2010 and copyright Shmuel Zeigerman
-2004-2010, and is released under the MIT_ license.
-
-.. _POSIX: http://www.opengroup.org/onlinepubs/009695399/basedefs/xbd_chap09.html
-.. _PCRE: http://www.pcre.org/pcre.txt
-.. _GNU: ftp://ftp.gnu.org/old-gnu/regex/
-.. _Oniguruma: http://www.geocities.jp/kosako3/oniguruma/doc/RE.txt
-.. _TRE: http://laurikari.net/tre/documentation/
-.. _Lua: http://www.lua.org
-.. _MIT: http://www.opensource.org/licenses/mit-license.php
-
------------------------------------------------------------
Notes