unoidl2

Unnamed repository; edit this file to name it for gitweb.
git clone https://logand.com/git/unoidl2.git/
Log | Files | Refs

commit c61c8326110cfe3639af0f60b0f946ef19a0b443
parent 43a17a00bb496641e1f79bc4544af6c635c1017a
Author: Tomas Hlavaty <tom@logand.com>
Date:   Mon, 12 Mar 2012 23:25:34 +0100

ast is const

Diffstat:
Munoidl2ast.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/unoidl2ast.c b/unoidl2ast.c @@ -24,7 +24,7 @@ extern int yyparse(); extern const Any NIL; -extern Any ast; +extern const Any ast; static void pr_all(Any x) { for(; NIL != x; x = cdr(x)) {