From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Dmitry Gutov Newsgroups: gmane.emacs.devel Subject: Re: progmodes/project.el and search paths Date: Tue, 4 Aug 2015 01:56:13 +0300 Message-ID: <55BFF18D.8000401@yandex.ru> References: <55BE209F.1000009@siege-engine.com> <55BE509B.2080307@yandex.ru> <55BEC1B5.6060204@gmail.com> <86twsgfiuc.fsf@stephe-leake.org> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1438642586 8523 80.91.229.3 (3 Aug 2015 22:56:26 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Mon, 3 Aug 2015 22:56:26 +0000 (UTC) To: Stephen Leake , emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Tue Aug 04 00:56:26 2015 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1ZMOef-0001f6-Lv for ged-emacs-devel@m.gmane.org; Tue, 04 Aug 2015 00:56:25 +0200 Original-Received: from localhost ([::1]:60729 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZMOee-0007NU-Vu for ged-emacs-devel@m.gmane.org; Mon, 03 Aug 2015 18:56:24 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:44834) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZMOeZ-0007K9-Nz for emacs-devel@gnu.org; Mon, 03 Aug 2015 18:56:20 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZMOeW-00050C-HJ for emacs-devel@gnu.org; Mon, 03 Aug 2015 18:56:19 -0400 Original-Received: from mail-wi0-x234.google.com ([2a00:1450:400c:c05::234]:38404) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZMOeW-0004zL-AZ for emacs-devel@gnu.org; Mon, 03 Aug 2015 18:56:16 -0400 Original-Received: by wibxm9 with SMTP id xm9so239749wib.1 for ; Mon, 03 Aug 2015 15:56:15 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:subject:to:references:from:message-id:date:user-agent :mime-version:in-reply-to:content-type:content-transfer-encoding; bh=oYhVz0PSb155oicym4k+1qnp0BgKbYweLbldwuP9mL0=; b=ey0KzrOcg/VmepuIJvc+O5ra7n31QqkWHeUbZl25EvsL0moXFO/xhN2o0gDiSMpryl Hru2DQjclMRWLAfJmNdyjILLmMeyJPvKL+1HC9sHExOeML+D+K9nFsol9d7NEttgV478 89+i7f8Pj07zkDfHqeUvOx4gmHQFxEVnapNFlJACFDypagPWPxCE4YD4x1axgAwyCOAb nvYNzeS48QTtxmQ5ZmiSLkIZcuJOionmMzXdm4jXU8JXm6Jggmy9/CZ0fhkQLBNgd+uE /IPJdEBCUvwItoa9gOxqYFMAPYG0KaeMOUiMmwnY00odVskQR7QzF/hqemu3TfepTGsw WJ5Q== X-Received: by 10.181.13.36 with SMTP id ev4mr38517019wid.65.1438642575650; Mon, 03 Aug 2015 15:56:15 -0700 (PDT) Original-Received: from [192.168.1.2] ([185.105.175.24]) by smtp.googlemail.com with ESMTPSA id ez4sm15732256wid.14.2015.08.03.15.56.14 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 03 Aug 2015 15:56:15 -0700 (PDT) User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:40.0) Gecko/20100101 Thunderbird/40.0 In-Reply-To: <86twsgfiuc.fsf@stephe-leake.org> X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2a00:1450:400c:c05::234 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:188377 Archived-At: On 08/03/2015 07:16 PM, Stephen Leake wrote: > Which is one reason to have an "independent" project core; perhaps the > projectile team will be more amenable to adopting a core API that isn't > named "ede"? I'm sure any reservations developers have about EDE are not related to the name. > There are also restrictions for elisp, since it is preloaded. I think > the current rule is cl-lib can be preloaded, but not eieio? eieio is not preloaded, but cl-generic already is. That means you can use the generic functions and cl-structs, but not EIEIO classes, in the preloaded code.