aboutsummaryrefslogtreecommitdiffstats
path: root/devel
diff options
context:
space:
mode:
authordanfe <danfe@FreeBSD.org>2011-11-18 20:34:39 +0800
committerdanfe <danfe@FreeBSD.org>2011-11-18 20:34:39 +0800
commit305f18dec384e723665408f639e40d6ebe30b043 (patch)
tree50618998659c118889afcc5d0e6355834247e55a /devel
parent20ec9b62fe6a0d827bf824d74402a7c6cb859e8b (diff)
downloadfreebsd-ports-gnome-305f18dec384e723665408f639e40d6ebe30b043.tar.gz
freebsd-ports-gnome-305f18dec384e723665408f639e40d6ebe30b043.tar.zst
freebsd-ports-gnome-305f18dec384e723665408f639e40d6ebe30b043.zip
Beautify port description (reformat and remove excessive whitespace).
Feature safe: yes
Diffstat (limited to 'devel')
-rw-r--r--devel/lemon/pkg-descr26
1 files changed, 12 insertions, 14 deletions
diff --git a/devel/lemon/pkg-descr b/devel/lemon/pkg-descr
index 4025df838fec..e37d1b2d5845 100644
--- a/devel/lemon/pkg-descr
+++ b/devel/lemon/pkg-descr
@@ -1,21 +1,19 @@
-The Lemon program is an LALR(1) parser generator. It takes a context
-free grammar and converts it into a subroutine that will parse a file
-using that grammar.
+The Lemon program is an LALR(1) parser generator. It takes a context free
+grammar and converts it into a subroutine that will parse a file using that
+grammar.
-Lemon is similar to the much more famous programs "YACC" and "BISON".
-But lemon is not compatible with either yacc or bison. There are several
-important differences:
+Lemon is similar to much more famous programs Yacc and Bison. But lemon is
+not compatible with either of them; there are several important differences:
- . Lemon using a different grammar syntax which is less prone to
- programming errors.
+ - Lemon using a different grammar syntax which is less prone to
+ programming errors
- . Lemon generates a parser that is faster than Yacc or Bison
- parsers (according to the author).
+ - Lemon generates a parser that is faster than Yacc or Bison parsers
+ (according to the author)
- . The parser generated by Lemon is both re-entrant and thread-safe.
+ - The parser generated by Lemon is both re-entrant and thread-safe
- . Lemon includes the concept of a non-terminal destructor, which
- makes it much easier to write a parser that does not
- leak memory.
+ - Lemon includes the concept of a non-terminal destructor, which makes
+ it much easier to write a parser that does not leak memory
WWW: http://www.hwaci.com/sw/lemon/