mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-14 15:40:19 +02:00
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!
This commit is contained in:
parent
911b03b20c
commit
167510bc10
2 changed files with 9 additions and 14 deletions
|
@ -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))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue