Fixed bug 162153: Bytevectors should be self evaluating.
This commit is contained in:
parent
43eb1bfcb3
commit
eaeb6a4876
|
@ -427,7 +427,8 @@
|
||||||
|
|
||||||
(define self-evaluating?
|
(define self-evaluating?
|
||||||
(lambda (x) ;;; am I missing something here?
|
(lambda (x) ;;; am I missing something here?
|
||||||
(or (number? x) (string? x) (char? x) (boolean? x))))
|
(or (number? x) (string? x) (char? x) (boolean? x)
|
||||||
|
(bytevector? x))))
|
||||||
|
|
||||||
;;; strip is used to remove the wrap of a syntax object.
|
;;; strip is used to remove the wrap of a syntax object.
|
||||||
;;; It takes an stx's expr and marks. If the marks contain
|
;;; It takes an stx's expr and marks. If the marks contain
|
||||||
|
|
Loading…
Reference in New Issue