Custom Query (1030 matches)
Results (847 - 849 of 1030)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #84 | fixed | Can't paste from outside the IDE | ||
| Description |
Go into textedit and Copy some text. Go back in the IDE, select an editor buffer and select Edit>Paste * Error in event process: Objective-C runtime exception: Attempt to mutate immutable object with replaceOccurrencesOfString:withString:options:range: I've attached the backtrace |
|||
| #106 | fixed | Can't eval region with package changes | ||
| Description |
Start up the IDE, and open an editor window on attached file. Hit cmd-A then Enter. Get error: Welcome to OpenMCL Version 1.1-pre-070722 (DarwinPPC32)! ? ;Loading #P"/Users/gz/OpenMCL/trunk/ccl/tools/asdf.dfsl"... ? ? ? > Error: Unbound variable: COMMON-LISP-USER::COCOA.ASD I'm guessing what's happening is that the in-package form is not affecting the rest of the evaluation. It should. |
|||
| #314 | fixed | Can't dump #<A Foreign Pointer #x1> - unknown type | ||
| 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")
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+))
|
|||
