Custom Query (1030 matches)
Results (622 - 624 of 1030)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #346 | fixed | REPORT-DEFERRED-WARNINGS | ||
| Description |
In the end of compilation of McCLIM I get the following: > Error: value "home:lisp;site;mcclim;graphics.lisp.newest" is not of the expected type LIST. > While executing: CCL::DEF-INFO.MACRO-P, in process listener(1). > Type :POP to abort, :R for a list of available restarts. > Type :? for other options. 1 > :B *(7F957DE11868) : 0 (DEF-INFO.MACRO-P #(NIL NIL "home:lisp;site;mcclim;graphics.lisp.newest" (CCL::MACRO))) 82 (7F957DE118C0) : 1 (REPORT-DEFERRED-WARNINGS) 1573 (7F957DE11940) : 2 (CALL-WITH-COMPILATION-UNIT #<COMPILED-LEXICAL-CLOSURE (:INTERNAL CCL::WITH-COMPILATION-UNIT-BODY ASDF:OPERATE) #x7F957F43543F> [...]) 245 |
|||
| #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)' |
|||
| #377 | fixed | rebuild-ccl fails with a method-combination defined | ||
| Description |
Reported by Eric Marsden on bug-openmcl: When a method combination has been defined in the running image, ClozureCL compilation fails in libs/method-combination.lisp : ,---- | ;Compiling "/usr/local/src/clozure/ccl/lib/method-combination.lisp"... | ;Loading #P"/usr/local/src/clozure/ccl/bin/method-combination.lx64fsl"... | > Error: value #<Anonymous Function #x30004090A0FF> is not of the expected type LIST. | > While executing: LIST-LENGTH, in process listener(1). | > Type :POP to abort, :R for a list of available restarts. | > Type :? for other options. | 1 > :b | *(7FF537A2D1A0) : 0 (LIST-LENGTH ((#:ARGS . #:GF) . #<Anonymous Function #x30004090A0FF>)) 109 | (7FF537A2D208) : 1 (PLISTP ((#:ARGS . #:GF) . #<Anonymous Function #x30004090A0FF>)) 61 | (7FF537A2D228) : 2 (PL-SEARCH ((#:ARGS . #:GF) . #<Anonymous Function #x30004090A0FF>) :OPERATOR) 45 | (7FF537A2D248) : 3 (GETF ((#:ARGS . #:GF) . #<Anonymous Function #x30004090A0FF>) :OPERATOR NIL) 69 | (7FF537A2D270) : 4 (FUNCALL #'#<(:INTERNAL %DEFINE-METHOD-COMBINATION-EVALUATOR)> ASDF:STANDARD-ASDF-METHOD-COMBINATION #(LONG-METHOD-COMBINATION (# . #) #<POPULATION #x30004090A0BD> #<POPULATION #x30004090A09D>)) 109 | (7FF537A2D2A0) : 5 (MAPHASH 2 #<HASH-TABLE :TEST EQ size 10/60 #x3000407A539D>) 421 | (7FF537A2D308) : 6 (%DEFINE-METHOD-COMBINATION-EVALUATOR AND #<Anonymous Function #x30004170A52F>) 485 | (7FF537A2D328) : 7 (FUNCALL #'#<Anonymous Function #x30004170A77F>) 477 | (7FF537A2D348) : 8 (FUNCALL #'#<$FASL-LFUNCALL> #<FASLSTATE #x7FF53903CE6D>) 77 `---- I ran into this because I load ASDF from my init file. Compilation works fine without ASDF (or other use of DEFINE-METHOD-COMBINATION) loaded; until a few days ago it was possible to build ClozureCL with ASDF loaded. |
|||
