Custom Query (1030 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (265 - 267 of 1030)

Ticket Resolution Summary Owner Reporter
#1035 fixed special variables and declare ignore R. Matthew Emerson
Description

The spec says that a warning should be issued if a variable declared to be ignored is declared SPECIAL, as in:

(defun foo (x y)
 (declare (ignore y))
 ...
 (locally
   (declare (special y))
   ...))

That code doesn't make much sense, but it clearly deservers a warning.

(defparameter y ...)

(defun foo (x y)
 (declare (ignore y))
 ...)

is about the same thing, but the warning in both cases should probably complain that inconsistent declarations applied to Y and not just say that it "wasn't IGNOREd".

#1054 fixed (equal #p"/" #p"ccl:") returns t Gary Byers R. Matthew Emerson
Description
Welcome to Clozure Common Lisp Version 1.9-dev-r15596  (DarwinX8664)!
? (equal #p"/" #p"ccl:")
T

That would seem to be wrong.

#1055 fixed can't use files that have backslashes in their names Gary Byers R. Matthew Emerson
Description

Create a file /tmp/test/
and observe the following:

Welcome to Clozure Common Lisp Version 1.9-dev-r15596  (DarwinX8664)!
? (probe-file "/tmp/test/\\\\")
#P"/private/tmp/test/"
? (native-translated-namestring "\\\\")
""
? 

Perhaps ccl::namestring-unquote needs to get a little smarter.

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