Custom Query (1030 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (250 - 252 of 1030)

Ticket Resolution Summary Owner Reporter
#311 fixed can't execute-selection that ends in a comment gz gz
Description

From openmcl-devel:

At 6/10/2008 01:54 AM, Rich Sutton wrote: in the ide, bring up a listener. then make a buffer that ends with a comment, say a new buffer with just a ; in it. finally, select the contents of the buffer and invoke execute-selection. your listener will disappear. otherwise appears to be harmless. applies to multi-line comments too -- i ran into this because i had a bunch of test code commented out at the end of some file i was working on.

#312 fixed Ran out of imm temp registers when compile IRONCLAD R. Matthew Emerson Chun Tian (binghe)
Description

I'm under Clozure Common Lisp Version 1.1-r9799S (DarwinX8632).

Compile IRONCLAD, the pure lisp encrpyt package, failed. See attach for backtrace.

#314 fixed Can't dump #<A Foreign Pointer #x1> - unknown type Gary Byers John Fremlin
Description

With 1.2-r9226-RC1 (LinuxX8664), cannot compile-file with a pointer defconstant. A little annoying as it works on SBCL, clisp, etc.

(load "signal.lisp")
(compile-file "signal.lisp")

Error: Can't dump #<A Foreign Pointer #x1> - unknown type While executing: CCL::FASL-UNKNOWN, in process listener(1).

Here is signal.liop

(asdf:operate 'asdf:load-op :cffi)
(defconstant +SIG_IGN+ (cffi:make-pointer 1))
(defconstant +SIGPIPE+ 13)

(cffi:defcfun ("signal" syscall-signal)
      :pointer
  (signum :int) 
  (action :pointer)) 

(defun disable-sigpipe ()
  (syscall-signal +SIGPIPE+ +SIG_IGN+))

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