Custom Query (1030 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (352 - 354 of 1030)

Ticket Resolution Summary Owner Reporter
#1292 wontfix Error in %MAKE-READTABLE-ITERATOR Francois-Rene Rideau
Description

I recently recompiled my ccl from svn trunk, and got this error:

ccl --eval '(require "asdf")' --eval '(asdf:make "named-readtables")'

Error: Undefined function CCL::RDTAB.ALIST called with arguments (#<error printing READTABLE #x30200095218D>) . While executing: %MAKE-READTABLE-ITERATOR, in process listener(1).

Apparently, named-readtables relied on the old rdtab.alist to build a %make-readtable-iterator.

Can you provide some API that iterates over your sparse-vector and/or your readtables?

Here is the corresponding issue in said library: https://github.com/melisgl/named-readtables/issues/5

#1294 fixed Please upgrade ASDF Francois-Rene Rideau
Description

Dear CCL developers,

can you upgrade ASDF to 3.1.5 ? In addition to many minor features and bug fixes, it should be a notable improvement for Windows users.

Alternatively, if you agree to it, I'll like to write and offer a patch for CCL to provide UIOP separately from ASDF, as do MKCL and SBCL, so you may (require "uiop") without loading the rest of ASDF.

#1297 fixed format ~,,kF is not implemented. Pascal Bourguignon
Description

(format nil "~2f" 0.1) should return "10.0", but we get "0.1".

(format nil "~,,2f" 0.1)  --> "0.1"         ; bad
(format nil "~8,,2f" 0.1) --> "    10.0"    ; ok
(format nil "~,8,2f" 0.1) --> "10.00000000" ; ok
Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.