0.7.3.23:
authorWilliam Harold Newman <william.newman@airmail.net>
Tue, 21 May 2002 13:11:49 +0000 (13:11 +0000)
committerWilliam Harold Newman <william.newman@airmail.net>
Tue, 21 May 2002 13:11:49 +0000 (13:11 +0000)
added trivial SET-SYNTAX-FROM-CHAR test promised in 0.7.3.16
checkin notes

tests/reader.pure.lisp
version.lisp-expr

index 9a43074..728722a 100644 (file)
     ;; so it'd be more logical for NON-TERMINATING-P to be T in
     ;; this case; but ANSI says it's NIL in this case.
     (assert (null non-terminating-p))))
+
+;;; rudimentary test of SET-SYNTAX-FROM-CHAR, just to verify that it
+;;; wasn't totally broken by the GET-MACRO-CHARACTER/SET-MACRO-CHARACTER
+;;; fixes in 0.7.3.16
+(assert (= 123579 (read-from-string "123579")))
+(let ((*readtable* (copy-readtable)))
+  (set-syntax-from-char #\7 #\;)
+  (assert (= 1235 (read-from-string "123579"))))
index ed76aaf..6a16efc 100644 (file)
@@ -18,4 +18,4 @@
 ;;; for internal versions, especially for internal versions off the
 ;;; main CVS branch, it gets hairier, e.g. "0.pre7.14.flaky4.13".)
 
-"0.7.3.22"
+"0.7.3.23"