From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Richard Stallman Newsgroups: gmane.emacs.devel Subject: Re: Potential copyright problem in EIEIO improvement Date: Wed, 30 Dec 2009 20:45:24 -0500 Message-ID: References: <23751_1262141343_ZZg0N7E3ZcBp~.00_1262141340.11263.18.camel@localhost.localdomain> Reply-To: rms@gnu.org NNTP-Posting-Host: lo.gmane.org Content-Type: text/plain; charset=ISO-8859-15 X-Trace: ger.gmane.org 1262224815 31833 80.91.229.12 (31 Dec 2009 02:00:15 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 31 Dec 2009 02:00:15 +0000 (UTC) Cc: emacs-devel@gnu.org To: Jan Moringen Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Thu Dec 31 03:00:07 2009 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1NQAKA-0005zr-D0 for ged-emacs-devel@m.gmane.org; Thu, 31 Dec 2009 02:59:38 +0100 Original-Received: from localhost ([127.0.0.1]:47339 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NQAKA-0007zV-Vn for ged-emacs-devel@m.gmane.org; Wed, 30 Dec 2009 20:59:39 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NQA6T-0001dJ-SJ for emacs-devel@gnu.org; Wed, 30 Dec 2009 20:45:29 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1NQA6Q-0001bG-0u for emacs-devel@gnu.org; Wed, 30 Dec 2009 20:45:29 -0500 Original-Received: from [199.232.76.173] (port=59757 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NQA6P-0001b7-Mv for emacs-devel@gnu.org; Wed, 30 Dec 2009 20:45:25 -0500 Original-Received: from fencepost.gnu.org ([140.186.70.10]:42256) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1NQA6P-0004bQ-CW for emacs-devel@gnu.org; Wed, 30 Dec 2009 20:45:25 -0500 Original-Received: from rms by fencepost.gnu.org with local (Exim 4.69) (envelope-from ) id 1NQA6O-0004tb-Aq; Wed, 30 Dec 2009 20:45:24 -0500 In-reply-to: <23751_1262141343_ZZg0N7E3ZcBp~.00_1262141340.11263.18.camel@localhost.localdomain> (message from Jan Moringen on Wed, 30 Dec 2009 03:49:00 +0100) X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6 (newer, 3) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:119095 Archived-At: > (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.