Custom Query (1030 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (847 - 849 of 1030)

Ticket Resolution Summary Owner Reporter
#1245 fixed #(#\a) and "a" do not work interchangeably as keys in an equalp hash table Gary Byers R. Matthew Emerson
Description
(defvar h (make-hash-table :test #'equalp)) 
(setf (gethash #(#\a) h) t) 
(gethash "a" h) ; => nil (incorrectly)

This works as expected on the 1.8 release branch (that, is, (gethash "a" h) returns t).

Note that the spec entry for equalp says: "a string and a general array that happens to contain the same characters are equalp".

#1259 fixed udp socket regression R. Matthew Emerson R. Matthew Emerson
Description

Works in 1.9, fails in trunk.

(defparameter *message* (make-array 20 :element-type '(unsigned-byte 8)
				       :initial-contents '(47 103 95 102 114 101 101 65 108 108 0 0 44 105 0 0 0 0 0 0)))

(defparameter *udp-server* (make-socket :type :datagram
					:local-port 42301))

(defparameter *udp-client* (make-socket :type :datagram
					:remote-port 42301))

(send-to *udp-client* *message* (length *message*))

See https://lists.clozure.com/pipermail/openmcl-devel/2015-January/010865.html

#1312 fixed Compiler bug x862-form to freg #<ACODE nil NIL> R. Matthew Emerson
Description
./lx86cl
(load "home:quicklisp;setup")
(ql:quickload :manardb)
(in-package :manardb)
(defun junk () (lisp-object-to-mptr nil))
> Error: Compiler bug or inconsistency:
>        x862-form to freg #<ACODE nil NIL>
Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.