From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!.POSTED!not-for-mail From: Tzach Livyatan Newsgroups: gmane.emacs.help Subject: Re: Using request.el question: what is function*? Date: Sun, 22 Jul 2018 07:00:28 -0700 (PDT) Message-ID: <32479348-0adc-441e-90b0-d6b2bb2bf4e7@googlegroups.com> References: <0c573a3d-96fa-4fe2-999b-ddbd946b3391@googlegroups.com> NNTP-Posting-Host: blaine.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Trace: blaine.gmane.org 1532268215 17364 195.159.176.226 (22 Jul 2018 14:03:35 GMT) X-Complaints-To: usenet@blaine.gmane.org NNTP-Posting-Date: Sun, 22 Jul 2018 14:03:35 +0000 (UTC) Injection-Date: Sun, 22 Jul 2018 14:00:29 +0000 User-Agent: G2/1.0 To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Sun Jul 22 16:03:31 2018 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by blaine.gmane.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fhExO-0004Rs-7v for geh-help-gnu-emacs@m.gmane.org; Sun, 22 Jul 2018 16:03:30 +0200 Original-Received: from localhost ([::1]:56109 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fhEzT-0002x3-UI for geh-help-gnu-emacs@m.gmane.org; Sun, 22 Jul 2018 10:05:39 -0400 X-Received: by 2002:ac8:128d:: with SMTP id y13-v6mr5206415qti.57.1532268029317; Sun, 22 Jul 2018 07:00:29 -0700 (PDT) X-Received: by 2002:ac8:71d4:: with SMTP id i20-v6mr170561qtp.2.1532268029095; Sun, 22 Jul 2018 07:00:29 -0700 (PDT) Original-Path: usenet.stanford.edu!s10-v6no719599qth.0!news-out.google.com!j7-v6ni637qth.1!nntp.google.com!s10-v6no719591qth.0!postnews.google.com!glegroupsg2000goo.googlegroups.com!not-for-mail Original-Newsgroups: gnu.emacs.help In-Reply-To: Complaints-To: groups-abuse@google.com Original-Injection-Info: glegroupsg2000goo.googlegroups.com; posting-host=199.203.229.89; posting-account=SqcunwoAAAAnkiIY3OPzkKeJlXIgWlKp Original-NNTP-Posting-Host: 199.203.229.89 Original-Xref: usenet.stanford.edu gnu.emacs.help:223425 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.21 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" Xref: news.gmane.org gmane.emacs.help:117550 Archived-At: Thanks for the prompt response! I did not load cl.el, and that was indeed the problem. On Sunday, July 22, 2018 at 4:55:36 PM UTC+3, Noam Postavsky wrote: > On 22 July 2018 at 09:42, wrote: >=20 > > Where do function* macro(?) is coming from? The name makes it very hard= to Google this issue. >=20 > If you've loaded cl.el, then f function* RET will tell you. It > looks like the current request.el uses cl-function already. >=20 > function* is an alias for =E2=80=98cl-function=E2=80=99 in =E2=80=98cl.el= =E2=80=99. >=20 > (function* FUNC) >=20 > Introduce a function. > Like normal =E2=80=98function=E2=80=99, except that if argument is a lamb= da form, > its argument list allows full Common Lisp conventions.