Custom Query (1030 matches)
Results (172 - 174 of 1030)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #1246 | fixed | Hemlock interns symbols indiscriminately | ||
| Description |
In the IDE: Welcome to Clozure Common Lisp Version 1.10-r16304M (DarwinX8664)! ? 'abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ ? (apropos 'abc) ABC ABCD ABCDE ABCDEF ABCDEFG ABCDEFGH ABCDEFGHI ABCDEFGHIJ ABCDEFGHIJK ABCDEFGHIJKL ABCDEFGHIJKLM ABCDEFGHIJKLMN ABCDEFGHIJKLMNO ABCDEFGHIJKLMNOP ABCDEFGHIJKLMNOPQ ABCDEFGHIJKLMNOPQR ABCDEFGHIJKLMNOPQRS ABCDEFGHIJKLMNOPQRST ABCDEFGHIJKLMNOPQRSTU ABCDEFGHIJKLMNOPQRSTUV ABCDEFGHIJKLMNOPQRSTUVW ABCDEFGHIJKLMNOPQRSTUVWX ABCDEFGHIJKLMNOPQRSTUVWXY ABCDEFGHIJKLMNOPQRSTUVWXYZ ABCDEFGHIJKLMNOPQRSTUVWZ :ABCL, Value: :ABCL ? |
|||
| #1260 | fixed | CCL::ARGLIST interns symbols in the current package | ||
| Description |
SLSIA: Welcome to Clozure Common Lisp Version 1.10-r16304M (DarwinX8664)! ? (find-symbol "ARGS") NIL NIL ? (arglist 'setf) (&REST ARGS) :DECLARATION ? (find-symbol "ARGS") ARGS :INTERNAL The problem occurs only when calling CCL::ARGLIST on macros, not functions. I know it's not kosher to complain about the behavior of unexported functions, but swank uses this and it causes real problems. For example, trying to (use-package :cl-who) in a swank session fails because the symbol STR gets interned in cl-user during the swank startup process. |
|||
| #1067 | invalid | Issue with read-time conditionalization facility | ||
| Description |
Hi,
$ uname -a Darwin localbox 11.4.2 Darwin Kernel Version 11.4.2: Thu Aug 23 16:25:48 PDT 2012; root:xnu-1699.32.7~1/RELEASE_X86_64 x86_64 $ /usr/local/ccl-1.9/dx86cl64 Welcome to Clozure Common Lisp Version 1.9-r15759 (DarwinX8664)! And I'm having issues with conditional read time (#+) working incorrectly. You can reproduce the issues trying to load nibbles or ironclad: nibbles: $ /usr/local/ccl-1.9/dx86cl64
(quicklWelcome to Clozure Common Lisp Version 1.9-r15759 (DarwinX8664)!
? (quicklisp:quickload "nibbles" :verbose t)
To load "nibbles":
Load 1 ASDF system:
nibbles
; Loading "nibbles"
Read error between positions 70 and 91 in /Users/rogersm/quicklisp/dists/quicklisp/software/nibbles-20121125-git/sbcl-opt/nib-tran.lisp.
> Error: There is no package named "SB-C" .
> While executing: CCL::%PARSE-TOKEN, in process listener(1).
> Type :GO to continue, :POP to abort, :R for a list of available restarts.
> If continued: Retry finding package with name "SB-C".
> Type :? for other options.
A possible solution is to apply this patch to nibbles package: sbcl-opt/nib-tran.lisp @@ -2,8 +2,9 @@ (cl:in-package :nibbles) -#+sbcl (progn +#+sbcl +(progn (sb-c:deftransform %check-bound ((vector bound offset n-bytes) ((simple-array (unsigned-byte 8) (*)) index (and fixnum sb-vm:word)
ironclad: $ /usr/local/ccl-1.9/dx86cl64
(quicklWelcome to Clozure Common Lisp Version 1.9-r15759 (DarwinX8664)!
? (quicklisp:quickload "ironclad" :verbose t)
To load "ironclad":
Load 1 ASDF system:
ironclad
; Loading "ironclad"
Read error between positions 70 and 91 in /Users/rogersm/quicklisp/dists/quicklisp/software/nibbles-20121125-git/sbcl-opt/nib-tran.lisp.
> Error: There is no package named "SB-C" .
> While executing: CCL::%PARSE-TOKEN, in process listener(1).
> Type :GO to continue, :POP to abort, :R for a list of available restarts.
> If continued: Retry finding package with name "SB-C".
> Type :? for other options.
Both issues do not occur in: $ /usr/local/ccl-1.8/dx86cl64 Welcome to Clozure Common Lisp Version 1.8-r15286M (DarwinX8664)! |
|||
