From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: =?ISO-8859-1?Q?Andreas_R=F6hler?= Newsgroups: gmane.emacs.help Subject: Re: problem with mapconcat Date: Thu, 04 Mar 2010 08:36:46 +0100 Message-ID: <4B8F630E.2040301@easy-emacs.de> References: <87bpf5zex5.fsf@mithlond.arda> <87635d5szl.fsf@zemblan.newkuwait.org> <871vg15s6r.fsf@zemblan.newkuwait.org> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Trace: dough.gmane.org 1267688103 4316 80.91.229.12 (4 Mar 2010 07:35:03 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Thu, 4 Mar 2010 07:35:03 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Thu Mar 04 08:34:58 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 1Nn5aE-0005h5-9J for geh-help-gnu-emacs@m.gmane.org; Thu, 04 Mar 2010 08:34:58 +0100 Original-Received: from localhost ([127.0.0.1]:60946 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Nn5aD-000248-Ij for geh-help-gnu-emacs@m.gmane.org; Thu, 04 Mar 2010 02:34:57 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Nn5Zp-000243-A7 for help-gnu-emacs@gnu.org; Thu, 04 Mar 2010 02:34:33 -0500 Original-Received: from [140.186.70.92] (port=36350 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Nn5Zo-00023v-HQ for help-gnu-emacs@gnu.org; Thu, 04 Mar 2010 02:34:33 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1Nn5Zo-0002Xl-1X for help-gnu-emacs@gnu.org; Thu, 04 Mar 2010 02:34:32 -0500 Original-Received: from moutng.kundenserver.de ([212.227.126.171]:60987) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1Nn5Zn-0002Xe-NT for help-gnu-emacs@gnu.org; Thu, 04 Mar 2010 02:34:32 -0500 Original-Received: from [192.168.178.27] (p54BE9973.dip0.t-ipconnect.de [84.190.153.115]) by mrelayeu.kundenserver.de (node=mreu1) with ESMTP (Nemesis) id 0McRue-1O4cSc19Xc-00HleS; Thu, 04 Mar 2010 08:34:30 +0100 User-Agent: Thunderbird 2.0.0.19 (X11/20081227) In-Reply-To: <871vg15s6r.fsf@zemblan.newkuwait.org> X-Provags-ID: V01U2FsdGVkX18UwsoYofUYF/LLW3i3P8i90BHfr7gg/3/tXO/ E3FOUcmsaxGCdqrfRDBIykr6OOm6SaT46PPsJsnX16qD+QwVHM BN6Xa1PJ2bp5WHoOXihxPISDBHfrkJYaNOzjfW70P8= X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. 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:72354 Archived-At: Thamer Mahmoud wrote: > Thamer Mahmoud writes: >> Another alternative: >> >> (mapconcat 'string (string-to-list "abc") "/") >> >> => "a/b/c" > > After sending the above, I realized that this would work too: > > (mapconcat 'string "abc" "/") > > > > > That seems to work either, whats strange for me: (mapconcat 'list "abc" "/")"a/b/c" Andreas