Custom Query (1030 matches)
Results (925 - 927 of 1030)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #1132 | duplicate | tilda-tilda format bug | ||
| Description |
CL-USER> (lisp-implementation-type)
"Clozure Common Lisp"
CL-USER> (lisp-implementation-version)
"Version 1.9 (LinuxX8632)"
CL-USER> (format t "Hello world!~{~~~D:@<~~A~~>~%~}"
'(5))
Hello world!; Evaluation aborted on #<SIMPLE-ERROR #x18B9B0D6>.
CL-USER>
Text of error: No matching bracket
"Hello world!~{~~~D:@<~~A~~>~%~}"
^
[Condition of type SIMPLE-ERROR]
|
|||
| #1134 | duplicate | The value :UNKNOWN-GF-KEYS is not of the expected type (MEMBER :TOOMANY :TOOFEW :ODD-KEYWORDS :UNKNOWN-KEYWORD :UNKNOWN-GF-KEYWORDS) | ||
| Description |
When printing backtrace of an error, I encountered a type error: The value :UNKNOWN-GF-KEYS is not of the expected type (MEMBER :TOOMANY :TOOFEW :ODD-KEYWORDS :UNKNOWN-KEYWORD :UNKNOWN-GF-KEYWORDS) The full log: http://cl-test-grid.appspot.com/blob?key=wsfocese4r I found symbol :UNKNOWN-GF-KEYS in the CCL source file level-1/sysutils.lisp. Seems like it should be changed to :UNKNOWN-GF-KEYWORDS |
|||
| #1135 | fixed | length of outbuf in write-perverted-string | ||
| Description |
When escape is nil, there could still be #
(outbuf (make-string (if escape
(+ end 2 (count-if (lambda (c) (or (eql c escape)
(eql c #\\))) string :end end))
(+ end 2 (count #\\ string :end end)))))
without this patch, I get errors while printing foreign-library objects: cl-user> (defvar *libobjc* (cffi:load-foreign-library "libobjc.so.4"))
*libobjc*
cl-user> (inspect *libobjc*)
[0] #<foreign-library #<error printing symbol #x30200248220E> "libobjc\\.so.4">
[1] Class: #<standard-class cffi:foreign-library>
[2] Wrapper: #<ccl::class-wrapper cffi:foreign-library #x3020020D1A9D>
Instance slots
[3] cffi::name: #:LIBOBJC\\.SO.4-8904
[4] type: :system
[5] cffi::spec: ((t "libobjc.so.4"))
[6] cffi::options: (:convention :cdecl)
[7] cffi::handle: #<shlib libobjc.so.4 #x30200243817D>
[8] pathname: #P"libobjc\\.so.4"
Inspect>
|
|||
