From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Kodi Arfer Newsgroups: gmane.emacs.help Subject: Re: Combining lists in Emacs Lisp Date: Mon, 10 Dec 2007 12:08:11 +0000 Organization: UseNetServer.com Message-ID: References: <85hcivo3da.fsf@lola.goethe.zz> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Trace: ger.gmane.org 1197290448 30420 80.91.229.12 (10 Dec 2007 12:40:48 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Mon, 10 Dec 2007 12:40:48 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Mon Dec 10 13:40:59 2007 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1J1hwI-0005n2-I5 for geh-help-gnu-emacs@m.gmane.org; Mon, 10 Dec 2007 13:40:50 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1J1hw1-0004kw-3U for geh-help-gnu-emacs@m.gmane.org; Mon, 10 Dec 2007 07:40:33 -0500 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!news.aset.psu.edu!news.glorb.com!uns-out.usenetserver.com!news.usenetserver.com!pc03.usenetserver.com!ALLTEL.NET-a2kHrUvQQWlmc!not-for-mail Original-Newsgroups: gnu.emacs.help User-Agent: Pan/0.129 (Benson & Hedges Moscow Gold) Original-X-Complaints-To: abuse@usenetserver.com Original-Lines: 11 Original-X-Trace: f0eda475d2c2b2866329821158 Original-Xref: shelby.stanford.edu gnu.emacs.help:154550 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:49979 Archived-At: On Thu, 06 Dec 2007 23:38:41 +0100, David Kastrup wrote: > You can try > > (apply '+ 4 3 (append foo bar)) > > Which is not necessarily terribly efficient but should work. And it does work! Thank you. Even if the copying is inefficient (I assume that's the inefficient part), I don't imagine there's any way to carve up lists like this without copying something.