diff -Nru cl-abnf-20131211/debian/changelog cl-abnf-20150608/debian/changelog --- cl-abnf-20131211/debian/changelog 2014-08-04 15:52:27.000000000 +0000 +++ cl-abnf-20150608/debian/changelog 2015-07-15 13:44:24.000000000 +0000 @@ -1,3 +1,9 @@ +cl-abnf (20150608-1) unstable; urgency=medium + + * Quicklisp release update. + + -- Dimitri Fontaine Wed, 15 Jul 2015 16:44:24 +0300 + cl-abnf (20131211-1) unstable; urgency=medium * Quicklisp release update. diff -Nru cl-abnf-20131211/README.md cl-abnf-20150608/README.md --- cl-abnf-20131211/README.md 2013-10-22 19:02:45.000000000 +0000 +++ cl-abnf-20150608/README.md 2015-05-06 17:08:23.000000000 +0000 @@ -1,11 +1,10 @@ # ABNF DEFINITION OF ABNF This Common Lisp librairie implements a parser generator for the ABNF -grammar format as described in [http://tools.ietf.org/html/rfc2234](RFC -2234). +grammar format as described in [RFC2234](http://tools.ietf.org/html/rfc2234). The generated parser is a regular expression scanner provided by the -[http://weitz.de/cl-ppcre/](cl-ppcre) lib, which means that we can't parse +[cl-ppcre](http://weitz.de/cl-ppcre/) lib, which means that we can't parse recursive grammar definition. One such definition is the ABNF definition as given by the RFC. Fortunately, as you have this lib, you most probably don't need to generate another parser to handle that particular ABNF grammar.