This site is a static rendering of the Trac instance that was used by R7RS-WG1 for its work on R7RS-small (PDF), which was ratified in 2013. For more information, see Home. For a version of this page that may be more recent, see R7RSSmallErrata in WG2's repo for R7RS-large.

R7RSSmall­Errata

cowan
2013-09-29 05:15:44
2history
source

Errata from the final draft of R7RS:

  1. The claim in Section 3.1, paragraph 2, that all variable binding constructs can be explained in terms of lambda does not apply to top-level bindings.
  1. Section 7.1.5 doesn't make it clear that a top-level syntax-rules pattern must be a list pattern, not a vector pattern or an identifier pattern.
  1. The procedure boolean=? is defined to return #t if the arguments are all booleans and are either all #t or all #f. The words "are all booleans and" incorrectly suggest that the value is #f if at least one argument is not a boolean. In fact it is an error to apply boolean=? to non-booleans.
  1. In Section 4.1.2, the examples '# and # should be '#a and #a respectively.
  1. In section 7.1, the escape sequence \| is not shown as permitted in strings. The list in Section 6.7 shows that it is equivalent to |. This makes the same escape sequences valid in both strings and symbols.
  1. The syntax-rules definition of case in Section 7.3 is incorrect; the fourth syntax rule must be moved after the fifth to avoid an improper match against the fourth rule when => is present. Here is the correct version:
(define-syntax case (syntax-rules (else =>) ((case (key ...) clauses ...) (let ((atom-key (key ...))) (case atom-key clauses ...))) ((case key (else => result)) (result key)) ((case key (else result1 result2 ...)) (begin result1 result2 ...)) ((case key ((atoms ...) => result)) (if (memv key '(atoms ...)) (result key))) ((case key ((atoms ...) => result) clause clauses ...) (if (memv key '(atoms ...)) (result key) (case key clause clauses ...))) ((case key ((atoms ...) result1 result2 ...)) (if (memv key '(atoms ...)) (begin result1 result2 ...))) ((case key ((atoms ...) result1 result2 ...) clause clauses ...) (if (memv key '(atoms ...)) (begin result1 result2 ...) (case key clause clauses ...)))))