mirror of
git://git.code.sf.net/p/sbcl/sbcl
synced 2026-09-10 07:26:40 -04:00
Spell "Clozure" correctly, and don't use pointerp
This commit is contained in:
parent
f8e9d55da0
commit
2eecae14d7
|
|
@ -91,7 +91,7 @@
|
|||
(setf (aref (base-char-syntax-array readtable) (char-code char)) attributes
|
||||
(aref (base-char-macro-array readtable) (char-code char)) function)
|
||||
(let ((table (extended-char-table readtable)))
|
||||
(cond ((or (pointerp function) (/= attributes +char-attr-constituent+))
|
||||
(cond ((or (not (eql function 0)) (/= attributes +char-attr-constituent+))
|
||||
(when (eq table *empty-extended-char-table*) ; copy-on-write
|
||||
(setf table (make-hash-table :test 'eq)
|
||||
(extended-char-table readtable) table))
|
||||
|
|
|
|||
|
|
@ -210,7 +210,7 @@
|
|||
;; Choice (1) fail at the call to SET-MACRO-CHARACTER
|
||||
;; CLISP: (set-macro-character #\$ nil) => "undefined function NIL"
|
||||
;; Choice (2) remove the macro, causing #\$ become normal syntax.
|
||||
;; ABCL and Closure both do this
|
||||
;; ABCL and Clozure both do this
|
||||
;; Choice (3) fail when reading the character #\$
|
||||
;; GCL: "Cell error on NIL: Undefined function"
|
||||
;; ECL: "The function NIL is undefined."
|
||||
|
|
|
|||
Loading…
Reference in a new issue