From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: =?UTF-8?B?QW5kcmVhcyBSw7ZobGVy?= Newsgroups: gmane.emacs.help Subject: Re: Refer to List of Arguments in Emacs Lisp Function Date: Thu, 13 Nov 2014 17:58:48 +0100 Message-ID: <5464E348.2020807@easy-emacs.de> References: NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1415897979 6907 80.91.229.3 (13 Nov 2014 16:59:39 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 13 Nov 2014 16:59:39 +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 Nov 13 17:59:28 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 1Xoxk0-0007Aq-B4 for geh-help-gnu-emacs@m.gmane.org; Thu, 13 Nov 2014 17:59:28 +0100 Original-Received: from localhost ([::1]:32807 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Xoxk0-0005PA-1S for geh-help-gnu-emacs@m.gmane.org; Thu, 13 Nov 2014 11:59:28 -0500 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:60955) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Xoxjh-0005OZ-1H for help-gnu-emacs@gnu.org; Thu, 13 Nov 2014 11:59:16 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XoxjY-0000ja-Oz for help-gnu-emacs@gnu.org; Thu, 13 Nov 2014 11:59:08 -0500 Original-Received: from mout.kundenserver.de ([212.227.17.10]:62100) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XoxjY-0000jD-FH for help-gnu-emacs@gnu.org; Thu, 13 Nov 2014 11:59:00 -0500 Original-Received: from [192.168.178.32] (brln-4d0c571b.pool.mediaWays.net [77.12.87.27]) by mrelayeu.kundenserver.de (node=mreue105) with ESMTP (Nemesis) id 0MN4u0-1XvaVG1wsa-006idC; Thu, 13 Nov 2014 17:58:58 +0100 User-Agent: Mozilla/5.0 (X11; Linux i686; rv:31.0) Gecko/20100101 Icedove/31.2.0 In-Reply-To: X-Provags-ID: V02:K0:Fp+QSjNTU6vuwVEY5nAtAreri85QRMyEs6NW4L8ie57 jvFnEz3ksvTXO13peh9BKmcGPdQn/+zRfczbvytfvO5BL5j3JG A0sE/uzblF55mwfdCBOSkXEwEuU/uswrhsi1GsiPygLeqVUGtQ kZOFR8SHw7zgqQE5XjDGrc49kL8wE8lv0TkQzgdqVVl2YTPKTu GTJ3SD7kr+utdmfXdqJpYx5p2gbN64FSteZUq08baVYWlOE2kO DqTlTGFIPqX6I0gylXD1U96P4Sn/giEvsH2hyF4soVOA8xGvK2 zmPAVV6+ByMRpu36RNqtKWsYlLtMDf9jN7ynq3L0fL2bxjHcJw RoVPB5zLie40jyPB6eXD4qqOvlQpLLVlTLRmawirk X-UI-Out-Filterresults: notjunk:1; X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x [generic] X-Received-From: 212.227.17.10 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:100916 Archived-At: On 13.11.2014 09:35, Alexander Shukaev wrote: >> >> (defun move (&rest args) >> (apply #'do-move args))) >> > > I'm aware of that, but that's not what I'm looking for... I'm interested in > required arguments in the first place. > What about that way: (cadr (symbol-function 'MY-FUNCTION))