Custom Query (1030 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (451 - 453 of 1030)

Ticket Resolution Summary Owner Reporter
#1053 fixed Not all ASCII control-character abbreviations are recognized Stas Boukarev
Description
(remove-if #'name-char
           '((#x00 "Nul") (#x01 "Soh") (#x02 "Stx") (#x03 "Etx") (#x04 "Eot")
             (#x05 "Enq") (#x06 "Ack") (#x07 "Bel") (#x08 "Bs") (#x09 "Ht") (#x0A "Lf")
             (#x0B "Vt") (#x0C "Ff") (#x0D "Cr") (#x0E "So") (#x0F "Si")
             (#x10 "Dle") (#x11 "Dc1") (#x12 "Dc2") (#x13 "Dc3") (#x14 "Dc4")
             (#x15 "Nak") (#x16 "Syn") (#x17 "Etb") (#x18 "Can") (#x19 "Em")
             (#x1A "Sub") (#x1B "Esc") (#x1C "Fs") (#x1D "Gs") (#x1E "Rs")
             (#x1F "Us") (#x20 "Sp") (#x7f "Del"))
           :key #'second)
((16 "Dle") (17 "Dc1") (18 "Dc2") (19 "Dc3")
 (20 "Dc4") (21 "Nak") (22 "Syn") (23 "Etb") (24 "Can") (25 "Em") (32 "Sp"))
#838 fixed Null characters confuse Hemlock Shannon Spires
Description

A #\null character in a lisp file causes the remainder of the file (after the #\Null) to quietly not appear if you open such a file in Hemlock in the Cocoa IDE.

If you then save this file, the file gets truncated after the #\null character.

Leaving aside the issue of how such a character would find its way into a Lisp file in the first place, this is certainly poor behavior on the part of the editor. Other utilities in the IDE (like the Search Files grepper) don't seem to have a problem with #\null characters in files.

#1252 fixed OSX udp socket, "Socket is already connected (error #56) during sendto" R. Matthew Emerson Josh Kordani
Description

on osx 10.7.5.

when attempting to call send-to on a socket that already has remote-port/host or local-port set, ccl reports "socket is already connected (error #56) during send-to"

code example to tickle this problem http://paste.lisp.org/display/144678

after evaluating the defparameters calls to create the test vector and the socket, all three of the send-to calls fail with the same problem

Similar problems are encountered in python apparently. see https://github.com/zerovm/zerocloud/issues/86

Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.