diff options
Diffstat (limited to 'module/srfi/srfi-9.scm')
-rw-r--r-- | module/srfi/srfi-9.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/srfi/srfi-9.scm b/module/srfi/srfi-9.scm index ce8029395..39f4e34e5 100644 --- a/module/srfi/srfi-9.scm +++ b/module/srfi/srfi-9.scm @@ -1,6 +1,6 @@ ;;; srfi-9.scm --- define-record-type -;; Copyright (C) 2001, 2002, 2006, 2009 Free Software Foundation, Inc. +;; Copyright (C) 2001, 2002, 2006, 2009, 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 @@ -119,7 +119,7 @@ (ctor-args (map (lambda (field) (cons (syntax->datum field) field)) #'(field ...)))) - #`(define #,constructor-spec + #`(define-inlinable #,constructor-spec (make-struct #,type-name 0 #,@(unfold (lambda (field-num) |