emacs-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Potential copyright problem in EIEIO improvement


From: Jan Moringen
Subject: Re: Potential copyright problem in EIEIO improvement
Date: Thu, 31 Dec 2009 04:25:38 +0100

On Wed, 2009-12-30 at 20:45 -0500, Richard Stallman wrote:
> > (defun eieio-c3-candidate (class remaining-inputs)
>     >   "Returns CLASS if it can go in the result now, otherwise nil"
>     >   ;; Ensure CLASS is not in any position but the first in any of
> the
>     >   ;; element lists of REMAINING-INPUTS.
>     >   (and (not (some (lambda (l) (member class (rest l)))
>     >                   remaining-inputs))
>     >        class))
>     > 
>     > and later:
>     > 
>     > (let ((next (some (lambda (c) (eieio-c3-candidate c
> remaining-inputs))
>     >                       (mapcar #'first
>     >                               (remove-if #'null remaining-inputs)))))
> 
> If that's the whole extent of the code in question,
> about 7 lines, I don't think there's an issue to be concerned about.

Thank you for your opinion on this. Regarding the "if" part, there are
two parts: the canonical Dylan linearization, upon which the paper
(mentioned in my original message) is improving and the actual
improvement. The code above corresponds to the improvement. My patch
also has parts derived from the unchanged parts of the canonical
implementation.

I thought the part derived from the canonical implementation should not
be a problem since the canonical implementation is available under GPL
in Open Dylan.

Thanks again,
Jan





reply via email to

[Prev in Thread] Current Thread [Next in Thread]