Custom Query (1030 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (937 - 939 of 1030)

Ticket Resolution Summary Owner Reporter
#146 fixed 64-Bit Intel Clozure CL Missing GL Bridge Files Gary Byers Brent Fulgham
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 gz bernd.beuster@googlemail.com
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:

  • (lisp-implementation-version)

"1.0.20"

  • (map 'list #'alpha-char-p "äöüÄÖÜß")

(T T T T T T T)'

#1061 fixed Multidimensional array reader syntax Fred Bayer
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)

Error: Reader error on #<CCL::RECORDING-CHARACTER-INPUT-STREAM #x2100CE960D>,

near position 14:

Initial contents for #A is inconsistent with dimensions: #2A("ab" #<SIMPLE-BIT-VECTOR 2>)

While executing: CCL::SIGNAL-READER-ERROR, in process listener(1).

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))

Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.