From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Stefan Horomnea Newsgroups: gmane.emacs.help Subject: Execute as a command a yanked text Date: Wed, 03 May 2006 12:12:54 +0300 Message-ID: <44587416.50103@softexperience.ro> References: NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1146647535 5928 80.91.229.2 (3 May 2006 09:12:15 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Wed, 3 May 2006 09:12:15 +0000 (UTC) Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Wed May 03 11:12:13 2006 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1FbDOx-0000jN-82 for geh-help-gnu-emacs@m.gmane.org; Wed, 03 May 2006 11:12:08 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1FbDOw-0002Vg-Aq for geh-help-gnu-emacs@m.gmane.org; Wed, 03 May 2006 05:12:06 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1FbDOj-0002Ug-5e for help-gnu-emacs@gnu.org; Wed, 03 May 2006 05:11:53 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1FbDOg-0002T2-KJ for help-gnu-emacs@gnu.org; Wed, 03 May 2006 05:11:52 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1FbDOg-0002Sz-H9 for help-gnu-emacs@gnu.org; Wed, 03 May 2006 05:11:50 -0400 Original-Received: from [193.25.112.246] (helo=host1.softexperience.ro) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA:32) (Exim 4.52) id 1FbDP1-0006Az-Td for help-gnu-emacs@gnu.org; Wed, 03 May 2006 05:12:12 -0400 Original-Received: from [82.76.203.3] (helo=[10.0.0.4]) by host1.softexperience.ro with esmtpa (Exim 4.52) id 1FbDOb-0005uE-0M for help-gnu-emacs@gnu.org; Wed, 03 May 2006 12:11:45 +0300 User-Agent: Thunderbird 1.5.0.2 (X11/20060420) Original-To: help-gnu-emacs@gnu.org In-Reply-To: X-SenderVerify: Fail X-PopBeforeSMTPSenders: andrei@softexperience.ro, logs@softexperience.ro, office@cdcopy.ro, office@hostme.ro, office@softexperience.biz, office@softexperience.ro, project@softexperience.ro, stefan@softexperience.biz, stefan@softexperience.ro, support@hostme.ro X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - host1.softexperience.ro X-AntiAbuse: Original Domain - gnu.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - softexperience.ro X-Source: X-Source-Args: X-Source-Dir: 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:34765 Archived-At: Hello, Do you have any idea how to execute a text that was previously killed ? I mean, I have a function named insert-html-table. This code works: (command-execute 'insert-html-table) This code doesn't work: (command-execute (car kill-ring-yank-pointer)) *and I have previously killed "insert-html-table" and, this also works (insert (car kill-ring-yank-pointer)) - and inserts the text: "insert-html-table". Thanks a lot for any help.