diff options
author | Noah Lavine <nlavine@haverford.edu> | 2011-03-06 00:12:37 -0500 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2013-01-16 10:11:43 +0100 |
commit | 74393a53cf15b76e74174a6c9d4015673d4474c0 (patch) | |
tree | 45f7bdb58ab5bce021d905ca58a6c3a2f29f43de /module/ice-9/peg.scm | |
parent | 44bd21ae7b5f9dc424eb5c948ba077d2200d3152 (diff) | |
download | guile-74393a53cf15b76e74174a6c9d4015673d4474c0.tar.gz |
Remove eval-when
* module/ice-9/peg.scm: remove the eval-when statement
Diffstat (limited to 'module/ice-9/peg.scm')
-rw-r--r-- | module/ice-9/peg.scm | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/module/ice-9/peg.scm b/module/ice-9/peg.scm index 4269f9bc7..644af6d79 100644 --- a/module/ice-9/peg.scm +++ b/module/ice-9/peg.scm @@ -53,8 +53,6 @@ execute the STMTs and try again." (or test (begin stmt stmt* ... (lp))))))) -(eval-when (compile load eval) - ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;;;; FOR DEFINING AND USING NONTERMINALS ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; @@ -96,6 +94,3 @@ execute the STMTs and try again." (make-prec at end string (string-collapse match)))))))))))) - -) - |