diff options
author | Ludovic Courtès <ludo@gnu.org> | 2009-11-07 19:24:49 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2009-11-07 19:24:49 +0100 |
commit | 5658035c9c7c2688ca90cd6241c1687bde8c992c (patch) | |
tree | dc4cb56e422d01b19bd5157bd27e8c45f614523e /module/oop/goops | |
parent | cdd73a8d697ee487c8b52785a9d02d3314d3fdf5 (diff) | |
download | guile-5658035c9c7c2688ca90cd6241c1687bde8c992c.tar.gz |
Fix typos leading to wrong argument counts.
* module/ice-9/channel.scm (eval): Fix number of arguments to
`guile:eval'.
* module/oop/goops/save.scm (write-readably): Fix number of arguments to
`write-array'.
* module/srfi/srfi-19.scm (priv:char->int): Fix number of arguments to
`priv:time-error'.
Diffstat (limited to 'module/oop/goops')
-rw-r--r-- | module/oop/goops/save.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/oop/goops/save.scm b/module/oop/goops/save.scm index b500a0c32..b51c9e31f 100644 --- a/module/oop/goops/save.scm +++ b/module/oop/goops/save.scm @@ -270,7 +270,7 @@ (display "(list->uniform-array " file) (display (array-rank o) file) (display " '() " file) - (write-array "(list " o file env))))) + (write-array "(list " o #f file env))))) ;;; ;;; Pairs |