From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Nicolas Richard Newsgroups: gmane.emacs.help Subject: Re: how to print an elisp function Date: Fri, 16 May 2014 12:18:46 +0200 Message-ID: <87d2fedo1l.fsf@geodiff-mac3.ulb.ac.be> References: <20140515230636.62abc236@gauss> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: ger.gmane.org 1400235507 26954 80.91.229.3 (16 May 2014 10:18:27 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Fri, 16 May 2014 10:18:27 +0000 (UTC) Cc: Help GNU Emacs To: Joe Riel Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Fri May 16 12:18:14 2014 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1WlFDS-0004ws-A8 for geh-help-gnu-emacs@m.gmane.org; Fri, 16 May 2014 12:18:14 +0200 Original-Received: from localhost ([::1]:34598 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WlFDR-0006ua-9R for geh-help-gnu-emacs@m.gmane.org; Fri, 16 May 2014 06:18:13 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:38970) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WlFDA-0006tO-1m for help-gnu-emacs@gnu.org; Fri, 16 May 2014 06:18:03 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WlFD2-0006Gl-Ji for help-gnu-emacs@gnu.org; Fri, 16 May 2014 06:17:55 -0400 Original-Received: from mxin.ulb.ac.be ([164.15.128.112]:57687) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WlFD2-0006Ga-DY for help-gnu-emacs@gnu.org; Fri, 16 May 2014 06:17:48 -0400 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: ArEEAF/ldVOkD4Xx/2dsb2JhbABZrmgFBpodAYEsdIIlAQEEAXkFCwshJQ8BBEkTiCwBDAiuB50AAYZuF4VVgX+GeweEQAEDoCuMRoM5Ow Original-Received: from mathsrv4.ulb.ac.be (HELO geodiff-mac3.ulb.ac.be) ([164.15.133.241]) by smtp.ulb.ac.be with ESMTP; 16 May 2014 12:17:46 +0200 In-Reply-To: <20140515230636.62abc236@gauss> (Joe Riel's message of "Thu, 15 May 2014 23:06:36 -0700") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3.91 (gnu/linux) X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 164.15.128.112 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:97696 Archived-At: Joe Riel writes: > How can I print an elisp function? > > (print some-func) returns an error, void-variable some-func. > How do I tell it to print the function assigned to some-func? Perhaps you want (print (symbol-function 'some-func)) -- Nico.