From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: John Paul Wallington Newsgroups: gmane.emacs.help Subject: Re: Creating string from list of strings Date: Mon, 14 Oct 2002 08:05:21 +0100 Sender: help-gnu-emacs-admin@gnu.org Message-ID: <873cr95wlq.fsf@bundalo.shootybangbang.com> References: <80of9xtu2k.fsf@gbr.newt.com> NNTP-Posting-Host: localhost.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1034578960 5407 127.0.0.1 (14 Oct 2002 07:02:40 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 14 Oct 2002 07:02:40 +0000 (UTC) Return-path: Original-Received: from monty-python.gnu.org ([199.232.76.173]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 180zFO-0001Ox-00 for ; Mon, 14 Oct 2002 09:02:38 +0200 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.10) id 180zE0-0000ci-00; Mon, 14 Oct 2002 03:01:12 -0400 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!news-spur1.maxwell.syr.edu!news.maxwell.syr.edu!diablo.theplanet.net!news.theplanet.net!127.0.0.1!nobody Original-Newsgroups: gnu.emacs.help Original-Lines: 13 Original-NNTP-Posting-Host: 62.25.230.85 Original-X-Trace: news8.svr.pol.co.uk 1034578788 29126 62.25.230.85 (14 Oct 2002 06:59:48 GMT) Original-NNTP-Posting-Date: 14 Oct 2002 06:59:48 GMT Original-X-Complaints-To: abuse@theplanet.net X-Attribution: jpw X-Face: R(_z-rF:grdKO.*u`n);p.i $Eiz=h^CO5eDYv"4:K@#\HN09*Ykx}}B{kF/KH}%f_o^Wp of strings into a single string. For example, how does one > print the following list of strings? > > (setq list-of-strings '("foo" "bar")) > (message (perform-magic-with list-of-strings)) How about (message (apply 'concat list-of-strings)) ? -- John Paul Wallington