[armedbear] #481: Problems with differing *READ-BASE* values for COMPILE-FILE/LOAD
armedbear
armedbear-devel at common-lisp.net
Sat Nov 28 07:22:37 UTC 2020
#481: Problems with differing *READ-BASE* values for COMPILE-FILE/LOAD
-------------------------------+--------------------
Reporter: Mark Evenson | Type: defect
Status: new | Priority: minor
Milestone: 1.8.1 | Component: other
Version: 1.8.1-dev | Keywords:
Parent Tickets: |
-------------------------------+--------------------
Eric Timmons reports
For file-2.test
{{{
(defun test () 10)
}}}
exercised with
{{{
(in-package :cl-user)
(let ((*read-base* 2))
(compile-file "file-2.lisp"))
(load "file-2.abcl")
(format t "Got ~D, expected 2~%" (test))
(fmakunbound 'test)
(let ((*read-base* 9))
(compile-file "file-2.lisp"))
(load "file-2.abcl")
(format t "Got ~D, expected 9~%" (test))
}}}
--
Ticket URL: <https://abcl.org/trac/ticket/481>
armedbear <https://abcl.org>
armedbear
More information about the armedbear-ticket
mailing list