From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Teemu Likonen Newsgroups: gmane.emacs.help Subject: Re: problem with mapconcat Date: Wed, 03 Mar 2010 15:57:10 +0200 Message-ID: <87bpf5zex5.fsf@mithlond.arda> References: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: dough.gmane.org 1267624681 31310 80.91.229.12 (3 Mar 2010 13:58:01 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Wed, 3 Mar 2010 13:58:01 +0000 (UTC) Cc: help-gnu-emacs@gnu.org To: Christian Wittern Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Wed Mar 03 14:57:57 2010 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.69) (envelope-from ) id 1Nmp5G-0005sP-5N for geh-help-gnu-emacs@m.gmane.org; Wed, 03 Mar 2010 14:57:54 +0100 Original-Received: from localhost ([127.0.0.1]:41189 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Nmp5F-0005RU-Bd for geh-help-gnu-emacs@m.gmane.org; Wed, 03 Mar 2010 08:57:53 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Nmp4m-0005My-AB for help-gnu-emacs@gnu.org; Wed, 03 Mar 2010 08:57:24 -0500 Original-Received: from [140.186.70.92] (port=44983 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Nmp4l-0005LO-8h for help-gnu-emacs@gnu.org; Wed, 03 Mar 2010 08:57:23 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1Nmp4k-0007k7-ES for help-gnu-emacs@gnu.org; Wed, 03 Mar 2010 08:57:23 -0500 Original-Received: from mta-out.inet.fi ([195.156.147.13]:55618 helo=jenni2.inet.fi) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1Nmp4k-0007j2-2K for help-gnu-emacs@gnu.org; Wed, 03 Mar 2010 08:57:22 -0500 Original-Received: from mithlond.arda (84.251.132.215) by jenni2.inet.fi (8.5.014) id 4B17EA3D03B05A3F; Wed, 3 Mar 2010 15:57:11 +0200 Original-Received: from dtw by mithlond.arda with local (Exim 4.69) (envelope-from ) id 1Nmp4Y-0004MO-M6; Wed, 03 Mar 2010 15:57:10 +0200 In-Reply-To: (Christian Wittern's message of "Wed, 3 Mar 2010 12:49:17 +0000 (UTC)") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.1.93 (gnu/linux) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 3) 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:72335 Archived-At: * 2010-03-03 12:49 (UTC), Christian Wittern wrote: > I am trying to build a regex with lisp, which inserts a certain string > into another string between each character, for example "abc" should > turn into "a/b/c". (mapconcat #'identity (mapcar #'char-to-string "abc") "/") => "a/b/c"