1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-17 01:00:20 +02:00

fix hygiene + modules + local macros

* module/ice-9/psyntax-pp.scm: Regenerate.

* module/ice-9/psyntax.scm (syntax-type): Look up the type of the car of
  a form relative to its module, if it is a syntax object. Fixes hygiene
  wrt modules and private macros.

* module/ice-9/syncase.scm (sc-macro): Add a comment.

* module/system/base/pmatch.scm: The big test case: just export pmatch,
  not ppat too.
This commit is contained in:
Andy Wingo 2009-04-06 22:48:03 -07:00
parent 196b40932e
commit c5cc65ac0c
4 changed files with 17 additions and 9472 deletions

View file

@ -1,6 +1,6 @@
(define-module (system base pmatch)
#:use-module (ice-9 syncase)
#:export (pmatch ppat))
#:export (pmatch))
;; FIXME: shouldn't have to export ppat...
;; Originally written by Oleg Kiselyov. Taken from: