summaryrefslogtreecommitdiff
path: root/module/language/scheme
diff options
context:
space:
mode:
authorAndy Wingo <wingo@pobox.com>2009-05-24 13:09:01 +0200
committerAndy Wingo <wingo@pobox.com>2009-05-24 13:09:01 +0200
commit81fd3152992c8ef62e1ec036f5a39443c8f8d0aa (patch)
tree02c33ddae2bd1f4b027ec21f5ba8e0c437e66083 /module/language/scheme
parenta755136ba8469fdccbcac956b4f5d8c6f4ec2a4e (diff)
downloadguile-81fd3152992c8ef62e1ec036f5a39443c8f8d0aa.tar.gz
update docs, clean up VM vestiges, macro docs, fix (/ a b c)
* doc/ref/api-procedures.texi (Compiled Procedures): Fix for API changes. * doc/ref/compiler.texi (Compiling to the Virtual Machine): Replace GHIL docs with Tree-IL docs. Update the bits about the Scheme compiler to talk about Tree-IL and the expander instead of GHIL. Remove <glil-argument>. Add placeholder sections for assembly and bytecode. * doc/ref/vm.texi: Update examples with what currently happens. Reword some things. Fix a couple errors. * libguile/vm-i-system.c (externals): Remove this instruction, it's not used. * module/ice-9/documentation.scm (object-documentation): If the object is a macro, try to return documentation on the macro transformer. * module/language/assembly/disassemble.scm (disassemble-load-program): Fix problem in which we skipped the first element of the object vector, because of changes to procedure layouts a few months ago. * module/language/scheme/spec.scm (read-file): Remove read-file definition. * module/language/tree-il.scm: Reorder exports. Remove <lexical>, it was a compat shim to something that was never released. Fix `location'. * module/language/tree-il/primitives.scm (/): Fix expander for more than two args to /. * module/system/base/compile.scm (read-file-in): Remove unused definition. * module/system/base/language.scm (system): Remove language-read-file. * module/language/ecmascript/spec.scm (ecmascript): Remove read-file definition.
Diffstat (limited to 'module/language/scheme')
-rw-r--r--module/language/scheme/spec.scm7
1 files changed, 0 insertions, 7 deletions
diff --git a/module/language/scheme/spec.scm b/module/language/scheme/spec.scm
index 4564fb933..cec2693aa 100644
--- a/module/language/scheme/spec.scm
+++ b/module/language/scheme/spec.scm
@@ -32,12 +32,6 @@
(read-enable 'positions)
-(define (read-file port)
- (do ((x (read port) (read port))
- (l '() (cons x l)))
- ((eof-object? x)
- (cons 'begin (reverse! l)))))
-
;;;
;;; Language definition
;;;
@@ -46,7 +40,6 @@
#:title "Guile Scheme"
#:version "0.5"
#:reader read
- #:read-file read-file
#:compilers `((tree-il . ,compile-tree-il)
(ghil . ,compile-ghil))
#:decompilers `((tree-il . ,decompile-tree-il))