Added note on handling special values in the parser.

This commit is contained in:
Jens Axel Søgaard 2012-07-01 22:50:43 +02:00
parent 94e4276d60
commit a97815258a
2 changed files with 6 additions and 2 deletions

View File

@ -1,7 +1,11 @@
#lang racket
(require "parameter.rkt")
(require syntax/srcloc)
;;;
;;; TODO: Handle special values.
;;; Pasting an image into the REPL breaks the parser at the moment.
;;;
;;; NOTES:
;;; Changes from planet version: ]] (CDB) Bug fixed

View File

@ -14,7 +14,7 @@
(bracket-read-syntax #'from-my-read in)))
(define (bracket-read-expression-syntax src in)
(if (eof-object? (peek-byte in))
(if (eof-object? (peek-byte-or-special in))
eof
(with-syntax ([body (parse-expression
src