help-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Using request.el question: what is function*?


From: tzach . livyatan
Subject: Using request.el question: what is function*?
Date: Sun, 22 Jul 2018 06:42:54 -0700 (PDT)
User-agent: G2/1.0

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 
request: Symbol’s function definition is void: function*

Where do function* macro(?) is coming from? The name makes it very hard to 
Google this issue.

Thanks
Tzach


reply via email to

[Prev in Thread] Current Thread [Next in Thread]