From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Eli Zaretskii Newsgroups: gmane.emacs.devel Subject: Re: Filename problem in CEDET merge Date: Fri, 28 Aug 2009 17:06:45 +0300 Message-ID: <83tyzsav7u.fsf@gnu.org> References: <87fxbcvplf.fsf@cyd.mit.edu> <1251426402.31028.27.camel@projectile.siege-engine.com> <837hwoclva.fsf@gnu.org> <1251458160.31028.44.camel@projectile.siege-engine.com> <83zl9kaws3.fsf@gnu.org> <1251467757.31028.51.camel@projectile.siege-engine.com> Reply-To: Eli Zaretskii NNTP-Posting-Host: lo.gmane.org X-Trace: ger.gmane.org 1251470584 11868 80.91.229.12 (28 Aug 2009 14:43:04 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Fri, 28 Aug 2009 14:43:04 +0000 (UTC) Cc: cyd@stupidchicken.com, zappo@gnu.org, emacs-devel@gnu.org To: eric@siege-engine.com Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Fri Aug 28 16:42:57 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 1Mh2fI-0004jb-Uq for ged-emacs-devel@m.gmane.org; Fri, 28 Aug 2009 16:42:57 +0200 Original-Received: from localhost ([127.0.0.1]:38459 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Mh2fI-0008Di-E6 for ged-emacs-devel@m.gmane.org; Fri, 28 Aug 2009 10:42:56 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Mh26L-00024J-GF for emacs-devel@gnu.org; Fri, 28 Aug 2009 10:06:49 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Mh26K-00023u-PR for emacs-devel@gnu.org; Fri, 28 Aug 2009 10:06:49 -0400 Original-Received: from [199.232.76.173] (port=58266 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Mh26K-00023p-FP for emacs-devel@gnu.org; Fri, 28 Aug 2009 10:06:48 -0400 Original-Received: from mtaout4.012.net.il ([84.95.2.10]:19223 helo=mtaout3.012.net.il) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1Mh26I-0002zf-Pj; Fri, 28 Aug 2009 10:06:47 -0400 Original-Received: from conversion-daemon.i_mtaout3.012.net.il by i_mtaout3.012.net.il (HyperSendmail v2004.12) id <0KP300900B5DSI00@i_mtaout3.012.net.il>; Fri, 28 Aug 2009 17:06:40 +0300 (IDT) Original-Received: from HOME-C4E4A596F7 ([84.228.144.38]) by i_mtaout3.012.net.il (HyperSendmail v2004.12) with ESMTPA id <0KP3007T8B73J240@i_mtaout3.012.net.il>; Fri, 28 Aug 2009 17:06:40 +0300 (IDT) In-reply-to: <1251467757.31028.51.camel@projectile.siege-engine.com> X-012-Sender: halo1@inter.net.il X-detected-operating-system: by monty-python.gnu.org: Solaris 9.1 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:114754 Archived-At: > From: "Eric M. Ludlam" > Cc: cyd@stupidchicken.com, zappo@gnu.org, emacs-devel@gnu.org > Date: Fri, 28 Aug 2009 09:55:57 -0400 > > semantic.el > semantic/lex.el > semantic/analyze.el > semantic/analyze/debug.el > semantic/analyze/fcn.el > semantic/analyze/refs.el > > which would show up in requires as: > > (require 'semantic) > (require 'semantic/lex) > (require 'semantic/analyze) > (require 'semantic/analyze/debug.el) > (require 'semantic/analyze/fcn) > (require 'semantic/analyze/refs) Ah, that's fine with me, of course. It's similar to what I suggested, but with the additional advantage of being specific in `require'. Thanks.