Custom Query (1030 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (478 - 480 of 1030)

Ticket Resolution Summary Owner Reporter
#1232 fixed INVALID-MEMORY-ACCESS on x8632 heller2
Description

Calling a undefined function with 3 arguments leads to a CCL::INVALID-MEMORY-ACCESS error. It doesn't seem like that is supposed to happen; I would expect a CCL::UNDEFINED-FUNCTION-CALL error instead:

shell> lx86cl --no-init
Welcome to Clozure Common Lisp Version 1.10-dev-r16189M-trunk (LinuxX8632)!

? (foo 1 2 3)
> Error: Fault during read of memory address #x-5AFA91A6
> While executing: CCL::INDEXED-GPR-MACPTR, in process listener(1).
> Type :POP to abort, :R for a list of available restarts.
> Type :? for other options.
1 >
#1291 notabug make-load-form not used for structs heller2
Description

CCL doesn't seem to call the make-load-form method for NAME in this example:

(in-package cl-user)

(eval-when (:compile-toplevel :load-toplevel)
  (defparameter *names* (make-hash-table))
  (defstruct name sym)
  (defmethod make-load-form ((o name) &optional env)
    (declare (ignore env))
    (let ((sym (name-sym o)))
      (format *trace-output* "make-load-form for name called: ~s~%" sym)
      `(or (gethash ',sym *names*)
	   (error "Name not defined: ~s" ',sym)))))

'#.(make-name :sym 'some-undefined-name)

The output is

shell> ccl -e '(load (compile-file "x.lisp") :verbose t)'
;Loading #P"/tmp/x.lx32fsl"...
Welcome to Clozure Common Lisp Version 1.11-dev-r16447M-trunk  (Linuxx8632)!

CCL is developed and maintained by Clozure Associates. For more information
about CCL visit http://ccl.clozure.com.  To enquire about Clozure's Common Lisp
consulting services e-mail info@clozure.com or visit http://www.clozure.com.

? 

but I would expect that it prints something about make-load-form being called.

#773 fixed asdf:find-system undefined after svn 1.6 install Henry Irvine
Description

installed 1.6 via svn this am. Tried to load a system via asdf. asdf:find-system undefined. This happens with either the system asdf loaded via require or with the asdf included with quicklisp.

Not sure if this is a ccl or asdf problem, but everything works fine in ccl-1.5 so I suspect something in 1.6.

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