summaryrefslogtreecommitdiff
path: root/module/srfi/srfi-16.scm
diff options
context:
space:
mode:
authorAndy Wingo <wingo@pobox.com>2009-10-25 12:39:03 +0100
committerAndy Wingo <wingo@pobox.com>2009-10-25 13:12:27 +0100
commit647117cd3599c1eaae5afe4b77fa15886d6d344d (patch)
treec30804560681c0bd7fb01e862048f6257917fe0c /module/srfi/srfi-16.scm
parent8b652112048ae2c482993897cdf40c5d9a67a8d2 (diff)
downloadguile-647117cd3599c1eaae5afe4b77fa15886d6d344d.tar.gz
case-lambda, case-lambda* in psyntax
* module/ice-9/psyntax.scm (case-lambda, case-lambda*): Add implementations of these, present in the base environment. * module/ice-9/psyntax-pp.scm: Regenerated. * module/srfi/srfi-16.scm (case-lambda): Replace the core's case-lambda definition with our own. We're not quite ready to switch yet.
Diffstat (limited to 'module/srfi/srfi-16.scm')
-rw-r--r--module/srfi/srfi-16.scm4
1 files changed, 2 insertions, 2 deletions
diff --git a/module/srfi/srfi-16.scm b/module/srfi/srfi-16.scm
index dc3c70920..36abee613 100644
--- a/module/srfi/srfi-16.scm
+++ b/module/srfi/srfi-16.scm
@@ -1,6 +1,6 @@
;;; srfi-16.scm --- case-lambda
-;; Copyright (C) 2001, 2002, 2006 Free Software Foundation, Inc.
+;; Copyright (C) 2001, 2002, 2006, 2009 Free Software Foundation, Inc.
;;
;; This library is free software; you can redistribute it and/or
;; modify it under the terms of the GNU Lesser General Public
@@ -46,7 +46,7 @@
;;; Code:
(define-module (srfi srfi-16)
- :export-syntax (case-lambda))
+ #:replace (case-lambda))
(cond-expand-provide (current-module) '(srfi-16))