From 234bf7dc882e6bdd4b13805edfd3a439269da813 Mon Sep 17 00:00:00 2001 From: Matt Birkholz Date: Mon, 3 Jun 2013 09:40:57 -0700 Subject: [PATCH] Fix for fix for bug #36887: return '() from IGNORABLE parser. The tail expr was accidentally deleted in the previous commit. --- src/sf/pardec.scm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/sf/pardec.scm b/src/sf/pardec.scm index eae11cd7b..3d9873773 100644 --- a/src/sf/pardec.scm +++ b/src/sf/pardec.scm @@ -331,7 +331,8 @@ USA. (variable/may-ignore! variable) (warn "ignoring IGNORABLE declaration of free variable" name)))) - names))) + names) + '())) ;; IGNORE causes warnings if an ignored variable actually ends ;; up being used. Mentioning the variable in a sequence will -- 2.25.1