From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!.POSTED!not-for-mail From: tzach.livyatan@gmail.com Newsgroups: gmane.emacs.help Subject: Using request.el question: what is function*? Date: Sun, 22 Jul 2018 06:42:54 -0700 (PDT) Message-ID: <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 1532267004 28864 195.159.176.226 (22 Jul 2018 13:43:24 GMT) X-Complaints-To: usenet@blaine.gmane.org NNTP-Posting-Date: Sun, 22 Jul 2018 13:43:24 +0000 (UTC) Injection-Date: Sun, 22 Jul 2018 13:42:54 +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 15:43:20 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 1fhEdr-0007PC-NM for geh-help-gnu-emacs@m.gmane.org; Sun, 22 Jul 2018 15:43:19 +0200 Original-Received: from localhost ([::1]:56054 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fhEfy-0006aK-Ha for geh-help-gnu-emacs@m.gmane.org; Sun, 22 Jul 2018 09:45:30 -0400 X-Received: by 2002:a0c:bd91:: with SMTP id n17-v6mr4980055qvg.59.1532266974713; Sun, 22 Jul 2018 06:42:54 -0700 (PDT) X-Received: by 2002:a37:ac0d:: with SMTP id e13-v6mr280528qkm.2.1532266974485; Sun, 22 Jul 2018 06:42:54 -0700 (PDT) Original-Path: usenet.stanford.edu!s10-v6no715842qth.0!news-out.google.com!j7-v6ni637qth.1!nntp.google.com!s10-v6no715832qth.0!postnews.google.com!glegroupsg2000goo.googlegroups.com!not-for-mail Original-Newsgroups: gnu.emacs.help 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:223422 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:117547 Archived-At: Hello elisp n00b here I'm trying to use an example of request.el (request "http://httpbin.org/get" :params '(("key" . "value") ("key2" . "value2")) :parser 'json-read :success (function* (lambda (&key data &allow-other-keys) (message "I sent: %S" (assoc-default 'args data))))) http://tkf.github.io/emacs-request/#examples and getting=20 request: Symbol=E2=80=99s function definition is void: function* Where do function* macro(?) is coming from? The name makes it very hard to = Google this issue. Thanks Tzach