]> granicus.if.org Git - re2c/commitdiff
Synced with master.
authorUlya Trofimovich <skvadrik@gmail.com>
Sat, 26 Aug 2017 19:31:24 +0000 (20:31 +0100)
committerUlya Trofimovich <skvadrik@gmail.com>
Sat, 26 Aug 2017 19:31:24 +0000 (20:31 +0100)
src/about/about.rst
src/about/contributors.rst [deleted file]
src/manual/syntax/syntax.rst

index 0294a8887404dfb0cbcc977f4dc4c75dd9cc7f76..bfc8edcec7a0f27c851f436d5551271fa2260bc9 100644 (file)
@@ -26,7 +26,7 @@ Below is the list of re2c contributors:
 many are mentioned by their nicknames and some may be missing.
 `Let me know <skvadrik@gmail.com>`_ if you feel that this list should be amended:
 
-.. include:: contributors.rst
+.. include:: ../manual/contributors.rst_
 
 License
 -------
diff --git a/src/about/contributors.rst b/src/about/contributors.rst
deleted file mode 100644 (file)
index 541be10..0000000
+++ /dev/null
@@ -1,34 +0,0 @@
-Abs62,
-asmwarrior,
-Ben Smith,
-Brian Young,
-CRCinAU,
-Dan Nuffer,
-Derick Rethans,
-Dimitri John Ledkov,
-Eldar Zakirov,
-Emmanuel Mogenet,
-Hartmut Kaiser,
-jcfp,
-Jean-Claude Wippler,
-Jeff Trull,
-Jérôme Dumesnil,
-Jesse Buesking,
-joscherl,
-Julian Andres Klode,
-Marcus Boerger,
-Mike Gilbert,
-nuno-lopes,
-Oleksii Taran,
-paulmcq,
-Paulo Custodio,
-Perry E. Metzger,
-philippschaefer,
-Ross Burton,
-Rui Maciel,
-Ryan Mast,
-Samuel006,
-Sergei Trofimovich,
-sirzooro,
-Tim Kelly,
-Ulya Trofimovich
index c0b6a80becc27201b2678d781ef6e372c760506d..43d4abcff3ba949997e520c343026cb2f7f3b82c 100644 (file)
@@ -5,33 +5,17 @@ Syntax
 .. toctree::
     :hidden:
 
-Code for ``re2c`` consists of a set of `rules`_, `definitions`_ and
-`configurations`_.
+Code for ``re2c`` consists of a set of `rules`_, `definitions`_ and `configurations`_.
 
 Rules
 ----------
 
-Each rule consist of a `regular expressions`_ accompanied with a block of C/C++ code
-which is to be executed when the associated regular expression is
-matched. You can either start the code with an opening curly brace or
-the sequence ``:=``. If you use an opening curly brace, ``re2c`` will count brace depth
-and stop looking for code automatically. Otherwise, curly braces are not
-allowed and ``re2c`` stops looking for code at the first line that does
-not begin with whitespace. If two or more rules overlap, the first rule
-is preferred.
-
 .. include:: rules.rst_
 
 Definitions
 -----------
 
-Named definitions are of the form:
-
-    ``name = regular-expression;``
-
-If ``-F`` is active, then named definitions are also of the form:
-
-    ``name { regular-expression }``
+.. include:: named_definitions.rst_
 
 Configurations
 --------------
@@ -46,9 +30,4 @@ Regular expressions
 Interface
 ----------
 
-The user must supply interface code either in the form of C/C++ code
-(macros, functions, variables, etc.) or in the form of `configurations`_.
-Which symbols must be defined and which are optional
-depends on the particular use case.
-
 .. include:: interface.rst_