From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Stefan Monnier Newsgroups: gmane.emacs.help Subject: Re: [ELISP] How do you turn an array of chars into a string? Date: Tue, 03 Aug 2010 11:33:48 +0200 Organization: A noiseless patient Spider Message-ID: References: <87wrsae07o.fsf@kzsu.stanford.edu> <871vagfzmz.fsf@kuiper.lan.informatimago.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: dough.gmane.org 1291856579 31307 80.91.229.12 (9 Dec 2010 01:02:59 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Thu, 9 Dec 2010 01:02:59 +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 Dec 09 02:02:55 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 1PQUuM-0002Z8-Qz for geh-help-gnu-emacs@m.gmane.org; Thu, 09 Dec 2010 02:02:55 +0100 Original-Received: from localhost ([127.0.0.1]:33569 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PQUQ0-0008NO-Q6 for geh-help-gnu-emacs@m.gmane.org; Wed, 08 Dec 2010 19:31:32 -0500 Original-Path: usenet.stanford.edu!goblin2!goblin.stu.neva.ru!feeder.erje.net!eternal-september.org!.POSTED!not-for-mail Original-Newsgroups: gnu.emacs.help Original-Lines: 12 Injection-Date: Tue, 3 Aug 2010 09:33:49 +0000 (UTC) Injection-Info: mx02.eternal-september.org; posting-host="gHTWu39xmF6+6jakqE8bYg"; logging-data="2002"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX19vHhP3vsdSCssgslHlPbJ0" User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.0.50 (gnu/linux) Cancel-Lock: sha1:RSMfUKXKMiFQC+tvEP5v5T6KSz0= sha1:dEcAJ1R+NFRLakkbQdzkFzmB49E= Original-Xref: usenet.stanford.edu gnu.emacs.help:180296 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:76345 Archived-At: >> A string *is* an array of chars. > Not in scheme or emacs lisp. (vectorp "abc") --> nil (arrayp "abc") => t Hence my subsequent: >> If you want to convert a vector >> (i.e. one of those arrays that contains arbitrary Lisp values) to Stefan