Opened 15 years ago
Closed 15 years ago
#75 closed defect (fixed)
Character \U0080 causes infinite loop
Reported by: | ehuelsmann | Owned by: | nobody |
---|---|---|---|
Priority: | major | Milestone: | |
Component: | libraries | Version: | |
Keywords: | Cc: | ||
Parent Tickets: |
Description
The following code causes an infinite loop on systems which do not support character \U0080 in their default output character set:
(defparameter single-character-symbols
'#.(let ((a (make-array 129)))
(dotimes (i 129)
(setf (svref a i) (make-string 1 :initial-element (code-char i))))
a))
Change History (3)
comment:1 Changed 15 years ago by
comment:2 Changed 15 years ago by
Component: | CLOS → libraries |
---|---|
Owner: | changed from somebody to nobody |
Definitely not the CLOS component; rather the compiler component. However, since I know the fix now: set to "libraries" component.
Note: See
TracTickets for help on using
tickets.
That is to say: the above code causes said infinite loop on *file compilation* of the above code.