Custom Query (1630 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (85 - 87 of 1630)

Ticket Resolution Summary Owner Reporter
#1693 fixed add 32bit feature, similar to 64bit Kon Lovett
Description

add missing platform bit width feature - #:32bit - for completness

#1692 fixed s11n doesn't work with srfi-69 hash-tables megane
Description

Trying to use the deserialized hash-table causes a segfault:

(import srfi-69)
(import s11n)

(define (store-and-load o file)
  (with-output-to-file file (lambda [] (serialize o)))
  (with-input-from-file file (lambda [] (deserialize))))

(let ([ht (store-and-load (make-hash-table) "out.ser")])
  (print "ht: " ht)
  (hash-table-set! ht 1 1)) ;; -> segfault
#1691 duplicate hash-table-delete! type boolean but per SRFI-69 doc should be void Kon Lovett
Description

suggest:

hash-table-delete! => *hash-table-delete!

(define (hash-table-delete! ...)

(*hash-table-delete! ...) (void))

  • kinda like the delete performed info but std says different
Note: See TracQuery for help on using queries.