From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Alexander Shukaev Newsgroups: gmane.emacs.help Subject: Re: Refer to List of Arguments in Emacs Lisp Function Date: Thu, 13 Nov 2014 09:35:01 +0100 Message-ID: References: NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 X-Trace: ger.gmane.org 1415867726 11784 80.91.229.3 (13 Nov 2014 08:35:26 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 13 Nov 2014 08:35:26 +0000 (UTC) Cc: help-gnu-emacs To: Joost Kremers Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Thu Nov 13 09:35:19 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 1Xops7-00028j-3b for geh-help-gnu-emacs@m.gmane.org; Thu, 13 Nov 2014 09:35:19 +0100 Original-Received: from localhost ([::1]:58320 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Xops6-0006qr-Nu for geh-help-gnu-emacs@m.gmane.org; Thu, 13 Nov 2014 03:35:18 -0500 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:46734) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Xoprw-0006p0-6D for help-gnu-emacs@gnu.org; Thu, 13 Nov 2014 03:35:08 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Xoprr-0006Ho-LL for help-gnu-emacs@gnu.org; Thu, 13 Nov 2014 03:35:08 -0500 Original-Received: from mail-lb0-x232.google.com ([2a00:1450:4010:c04::232]:53809) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Xoprr-0006FN-B2 for help-gnu-emacs@gnu.org; Thu, 13 Nov 2014 03:35:03 -0500 Original-Received: by mail-lb0-f178.google.com with SMTP id f15so11841086lbj.37 for ; Thu, 13 Nov 2014 00:35:02 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=hWvY04R7c6w0xp6JvT2Go5oHCSv48DRShNnFhDEyKcc=; b=NtxfK/OgTGOAyKYUcpcQQxm5SQqe/j69avDA7Np3y4FF0XbBmAxw6Lh9+eWV4J7lde Sxi/zhKJ0KSCTUilel4Z6gFnFhr8SOkjNWWo0DxvP20hlnoLPe9PRd3hBIKjvITLKe+C Fy9OMqRBry9+OOz7NeBQp7WedTeNIrHJEFVD209awEQQxrTM6FgiQfEW2XFZXO0jYVNa eEM+Qj4FTj0sifkLIHrcaY8yD0/8ptJ6XAB62ohvwlMrR5eWNixEJj1XOXDh9aE2HdBB rXBHLMp1251qGxCTvEAC1b8Q45qxgmuN0KsCKaBeuLBykOOPg1XMWrgbaYfn+/rt7cGx eVcw== X-Received: by 10.152.22.135 with SMTP id d7mr1009754laf.46.1415867701995; Thu, 13 Nov 2014 00:35:01 -0800 (PST) Original-Received: by 10.112.202.106 with HTTP; Thu, 13 Nov 2014 00:35:01 -0800 (PST) In-Reply-To: X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2a00:1450:4010:c04::232 X-Content-Filtered-By: Mailman/MimeDel 2.1.14 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:100907 Archived-At: > > (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.