Custom Query (1030 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (157 - 159 of 1030)

Ticket Resolution Summary Owner Reporter
#252 fixed CLOSE with :ABORT T does not delete FILE Gary Byers Osei Poku
Description

When a file is created with OPEN, CLOSEing it with :ABORT T should delete it. Currently, the created file is not deleted.

The correct thing happens, though, when the file is CLOSEd after OPENing it with :IF-EXISTS :SUPERSEDE. ie The original contents are restored.

#253 fixed Cannot paste text. gz Arthur W. Green
Description

The paste function simply does not function in the Clozure IDE. Text cut or copied within the IDE can be pasted to other applications, however.

#254 fixed define-method-combination does not recognize full set of argument lambda list keywords Gary Byers james anderson
Description
Welcome to Clozure Common Lisp Version 1.2-r8591:8592MS  (DarwinPPC32)!
? (define-method-combination standard+ ()
         ((around (:around))
          (before (:before))
          (primary () :required t)
          (after (:after)))
   (:arguments &optional args)

   (flet ((call-methods (methods)
            (mapcar #'(lambda (method)
                        `(call-method ,method))
                    methods)))
     (let ((form (if (or before after (rest primary))
                     `(multiple-value-prog1
                        (progn ,@(call-methods before)
                               (call-method ,(first primary)
                                            ,(rest primary)))
                        ,@(call-methods (reverse after)))
                     `(call-method ,(first primary)))))
        `(progn (print ,args)
       ,(if around
           `(call-method ,(first around)
                         (,@(rest around)
                          (make-method ,form)))
           form)))))
;Compiler warnings :
;   Unused lexical variable &OPTIONAL, in an anonymous lambda form
STANDARD+
? 

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