1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-10 14:00:21 +02:00

srfi-34 #:replace raise fix

* module/srfi/srfi-34.scm: #:replace the binding for `raise'
This commit is contained in:
Andy Wingo 2010-06-06 22:09:08 +02:00
parent 8c65549416
commit de976b75cd

View file

@ -1,6 +1,6 @@
;;; srfi-34.scm --- Exception handling for programs
;; Copyright (C) 2003, 2006, 2008 Free Software Foundation, Inc.
;; Copyright (C) 2003, 2006, 2008, 2010 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
@ -27,8 +27,8 @@
;;; Code:
(define-module (srfi srfi-34)
#:export (with-exception-handler
raise)
#:export (with-exception-handler)
#:replace (raise)
#:export-syntax (guard))
(cond-expand-provide (current-module) '(srfi-34))