From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: ludo@gnu.org (Ludovic =?utf-8?Q?Court=C3=A8s?=) Newsgroups: gmane.lisp.guile.user Subject: Re: nyacc 0.65.0 released Date: Wed, 30 Dec 2015 18:38:17 +0100 Message-ID: <87vb7fq1km.fsf@gnu.org> References: <87wprwuhpw.fsf@gnu.org> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Trace: ger.gmane.org 1451497114 24674 80.91.229.3 (30 Dec 2015 17:38:34 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Wed, 30 Dec 2015 17:38:34 +0000 (UTC) Cc: guile-user@gnu.org To: Matt Wette Original-X-From: guile-user-bounces+guile-user=m.gmane.org@gnu.org Wed Dec 30 18:38:34 2015 Return-path: Envelope-to: guile-user@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1aEKhk-0008MA-E7 for guile-user@m.gmane.org; Wed, 30 Dec 2015 18:38:32 +0100 Original-Received: from localhost ([::1]:53270 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aEKhj-0006Pu-Qh for guile-user@m.gmane.org; Wed, 30 Dec 2015 12:38:31 -0500 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:60050) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aEKhb-0006PL-Q0 for guile-user@gnu.org; Wed, 30 Dec 2015 12:38:24 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aEKhY-0000sc-Lq for guile-user@gnu.org; Wed, 30 Dec 2015 12:38:23 -0500 Original-Received: from fencepost.gnu.org ([2001:4830:134:3::e]:57199) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aEKhY-0000sR-IF; Wed, 30 Dec 2015 12:38:20 -0500 Original-Received: from reverse-83.fdn.fr ([80.67.176.83]:56308 helo=pluto) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_128_CBC_SHA1:128) (Exim 4.82) (envelope-from ) id 1aEKhY-0004FD-0A; Wed, 30 Dec 2015 12:38:20 -0500 X-URL: http://www.fdn.fr/~lcourtes/ X-Revolutionary-Date: 10 =?utf-8?Q?Niv=C3=B4se?= an 224 de la =?utf-8?Q?R?= =?utf-8?Q?=C3=A9volution?= X-PGP-Key-ID: 0x3D9AEBB5 X-PGP-Key: http://www.fdn.fr/~lcourtes/ludovic.asc X-PGP-Fingerprint: 3CE4 6455 8A84 FDC6 9DB4 0CFB 090B 1199 3D9A EBB5 X-OS: x86_64-unknown-linux-gnu In-Reply-To: (Matt Wette's message of "Wed, 30 Dec 2015 08:54:48 -0800") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.5 (gnu/linux) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 2001:4830:134:3::e X-BeenThere: guile-user@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: General Guile related discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guile-user-bounces+guile-user=m.gmane.org@gnu.org Original-Sender: guile-user-bounces+guile-user=m.gmane.org@gnu.org Xref: news.gmane.org gmane.lisp.guile.user:12290 Archived-At: Matt Wette skribis: > I can=E2=80=99t remember if any C99 items are not in. I do not have any = GNU99 extensions in there. However, this is not a faithful parser for C99.= The purpose is not to compile, but to generate translators and auto-coder= s. I have built the parser with the following features: > 1) The c-preprocessor parsing is merged in with the lexical analyzer. > 2) The parse tree is =E2=80=9Cfile oriented=E2=80=9D, so that you can tra= ck what elements are in the top-level file. > 3) The parser will parse comments. OK. Keeping things this way, with CPP parsing built in, is useful to analyzers + pretty-printers, and also for semantic patching tools like Coccinelle. Ludo=E2=80=99.