From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: "Juanma Barranquero" Newsgroups: gmane.emacs.help Subject: Re: eval-string Date: Mon, 5 Mar 2007 10:45:52 +0100 Message-ID: References: <1173085355.418811.203690@t69g2000cwt.googlegroups.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1173087996 13307 80.91.229.12 (5 Mar 2007 09:46:36 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Mon, 5 Mar 2007 09:46:36 +0000 (UTC) Cc: help-gnu-emacs@gnu.org To: "cefstat@gmail.com" Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Mon Mar 05 10:46:30 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 1HO9lw-0004l3-Or for geh-help-gnu-emacs@m.gmane.org; Mon, 05 Mar 2007 10:46:25 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1HO9lv-0002ux-Vk for geh-help-gnu-emacs@m.gmane.org; Mon, 05 Mar 2007 04:46:24 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1HO9lX-0002ul-9V for help-gnu-emacs@gnu.org; Mon, 05 Mar 2007 04:45:59 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1HO9lV-0002uG-8M for help-gnu-emacs@gnu.org; Mon, 05 Mar 2007 04:45:58 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1HO9lV-0002uD-2X for help-gnu-emacs@gnu.org; Mon, 05 Mar 2007 04:45:57 -0500 Original-Received: from wr-out-0506.google.com ([64.233.184.229]) by monty-python.gnu.org with esmtp (Exim 4.52) id 1HO9lU-0001bP-H4 for help-gnu-emacs@gnu.org; Mon, 05 Mar 2007 04:45:56 -0500 Original-Received: by wr-out-0506.google.com with SMTP id i3so1342927wra for ; Mon, 05 Mar 2007 01:45:55 -0800 (PST) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=pRXAPK45dKSQtdaYwonYRXgYA9j8RKwidg9LHsSsuLEKV/Au7Pibg45c0qngbi5VYfOYTeZExwTqXRNQkAyQ7QEcQ1/0N6KVV6JakOCHQkV+amgALlHKsbYcX60aShgM6PUWs/2nrDykpGEtk0NjJvXWqh03kEXqxby9FGU3y48= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=rHRTeL3ivDVW00ED4MtgM942rdhCLuMKoXvhUzlijUruySuf99SmWrc3YP6Xun6NG3pZgmn5AJBmzV85Ikci/+3s8TiYoELv16HAPa1tjnmPrYKOOdkXBDkRQZuG+PxYA+qd792FXjmMFB7pOpfpLf2VyRg7Otdb1V1RBR5Unow= Original-Received: by 10.115.111.1 with SMTP id o1mr1167192wam.1173087952238; Mon, 05 Mar 2007 01:45:52 -0800 (PST) Original-Received: by 10.114.234.16 with HTTP; Mon, 5 Mar 2007 01:45:52 -0800 (PST) In-Reply-To: <1173085355.418811.203690@t69g2000cwt.googlegroups.com> Content-Disposition: inline X-detected-kernel: Linux 2.4-2.6 (Google crawlbot) 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:41671 Archived-At: On 5 Mar 2007 01:02:35 -0800, cefstat@gmail.com wrote: > Is there a way to do something like > > (eval-string "(+ 2 3)") > > in my elisp code? Obviously, I want this expression to return 5. (eval (read "(+ 2 3)")) => 5 Juanma