Custom Query (1030 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (415 - 417 of 1030)

Ticket Resolution Summary Owner Reporter
#344 fixed error when calling a generic function with >45 eql-specialized methods gz Stephen Compall
Description

Found this working with r10913 Linuxx8664:

value #<recursive-lock [ptr @ #x6D51C0] #x3000448438ED> is not of the expected type
ccl:read-write-lock.

A full backtrace.

This only happens with at least 46 eql-specialized methods; the test code and results of running. That trial shows it also on r10956.

Only eql-specialized methods with the same preceding specializers count; commenting out the loop that adds methods specialized on another class has no effect on the test results; it's still 46.

Setting ccl::*lock-free-hash-table-default* to NIL before calling the generic function fixes the problem (found while browsing r10867).

#346 fixed REPORT-DEFERRED-WARNINGS gz Stas Boukarev
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 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)'

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