nyacc: new release 0.76.4

This commit is contained in:
Matt Wette 2017-02-23 17:31:24 -08:00 committed by Jan Nieuwenhuizen
parent 14d6407bc9
commit 72b0dbe2bd
3 changed files with 3 additions and 3 deletions

View file

@ -1,4 +1,4 @@
This is a version 0.76.3 of NYACC (Not Yet Another Compiler Compiler!).
This is a version 0.76.4 of NYACC (Not Yet Another Compiler Compiler!).
Copyright (C) 2015-2017 Matthew R. Wette

View file

@ -50,7 +50,7 @@
#:use-module (nyacc util)
)
(define *nyacc-version* "0.76.3")
(define *nyacc-version* "0.76.4")
;; @deffn proxy-? sym rhs

View file

@ -315,7 +315,7 @@
;; return "defined(FOO)" or "defined FOO".
(define (scan-defined-arg)
(let* ((ch (skip-il-ws (read-char))) (no-ec (not (char=? ch #\())))
(let iter ((chl (list ch)) (ch (read-char)))
(let iter ((chl (list ch)) (ch (skip-il-ws (read-char))))
(cond
((eof-object? ch)
(if no-ec