Custom Query (1030 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (292 - 294 of 1030)

Ticket Resolution Summary Owner Reporter
#1132 duplicate tilda-tilda format bug motopeh
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) Anton Vodonosov
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 Pascal Bourguignon
Description

When escape is nil, there could still be #
in the string that are processed (duplicated) in the output. Therefore it might be good to count the #
in that case too:

         (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> 
Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.