Custom Query (1030 matches)
Results (937 - 939 of 1030)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #146 | fixed | 64-Bit Intel Clozure CL Missing GL Bridge Files | ||
| Description |
Please populate the CCL (Intel 64-bit) image with the header database files for the OpenGL. These are present in the 32-bit CCL image (for PPC). |
|||
| #363 | fixed | German umlaut #\Latin_Small_Letter_Sharp_S is not alpha-char-p | ||
| Description |
German umlaut ß (#\Latin_Small_Letter_Sharp_S) is not alpha-char-p CL-USER> (lisp-implementation-version) "Version 1.3-dev-r11173M-trunk (DarwinX8664)" CL-USER> (map 'list #'alpha-char-p "äöüÄÖÜß") (T T T T T T NIL) CL-USER> (char-code #\ß) 223 CL-USER> (code-char 223) #\Latin_Small_Letter_Sharp_S SBCL does it right:
"1.0.20"
(T T T T T T T)' |
|||
| #1061 | fixed | Multidimensional array reader syntax | ||
| Description |
The reader signals an error when the first sequence in the initial contents list isn't a list, but a vector, bitvector or string when parsing a 2-dimensional array literal: ? #2a("ab" #*01)
near position 14:
If the first sequence is a list, everything works fine: ? #2a((1 2) "ab" #*10) #2A((1 2) (#\a #\b) (1 0)) Creating the array with make-array also works fine: ? (make-array '(2 2) :initial-contents '("ab" #*10)) #2A((#\a #\b) (1 0)) |
|||
