diff options
author | No Itisnt <theseaisinhere+git@gmail.com> | 2010-05-26 21:22:46 -0500 |
---|---|---|
committer | No Itisnt <theseaisinhere+git@gmail.com> | 2010-05-27 14:09:56 -0500 |
commit | 167510bc105747d18932696f57c26cfcc0446a3c (patch) | |
tree | 4d8106f31c16a99fb51c01ee124dac86e3470fb4 /module/srfi/srfi-9 | |
parent | 911b03b20c0e75b2379440064f7d8d8fd24453c2 (diff) | |
download | guile-167510bc105747d18932696f57c26cfcc0446a3c.tar.gz |
Record printer fixes
* doc/ref/srfi-modules.texi: Fix style
* module/srfi/srfi-9/gnu.scm (set-record-type-printer!): renamed from set-record-printer!
Diffstat (limited to 'module/srfi/srfi-9')
-rw-r--r-- | module/srfi/srfi-9/gnu.scm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/module/srfi/srfi-9/gnu.scm b/module/srfi/srfi-9/gnu.scm index 3a37471b1..30c101b2a 100644 --- a/module/srfi/srfi-9/gnu.scm +++ b/module/srfi/srfi-9/gnu.scm @@ -23,7 +23,8 @@ ;;; Code: (define-module (srfi srfi-9 gnu) - #:export (set-record-printer!)) + #:export (set-record-type-printer!)) -(define (set-record-printer! type thunk) +(define (set-record-type-printer! type thunk) + "Set a custom printer THUNK for TYPE." (struct-set! type vtable-index-printer thunk)) |