diff options
author | marty hiatt <martianhiatus [a t] riseup [d o t] net> | 2022-09-12 19:16:52 +0200 |
---|---|---|
committer | marty hiatt <martianhiatus [a t] riseup [d o t] net> | 2022-09-12 19:16:52 +0200 |
commit | cef2ed2bbb6aca680e40db4b14572227f3843eeb (patch) | |
tree | ba87bdd2a7a875c48ece81edf68708fb3486db9a /lisp/mastodon-http.el | |
parent | 05c0ac8f288280a88864db73a5ccf5af553c6d06 (diff) |
macro declare debug body for auth req
Diffstat (limited to 'lisp/mastodon-http.el')
-rw-r--r-- | lisp/mastodon-http.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/mastodon-http.el b/lisp/mastodon-http.el index a3a0a95..a8b3650 100644 --- a/lisp/mastodon-http.el +++ b/lisp/mastodon-http.el @@ -100,6 +100,7 @@ Message status and JSON error from RESPONSE if unsuccessful." (defmacro mastodon-http--authorized-request (method body &optional unauthenticated-p) "Make a METHOD type request using BODY, with Mastodon authorization. Unless UNAUTHENTICATED-P is non-nil." + (declare (debug 'body)) `(let ((url-request-method ,method) (url-request-extra-headers (unless ,unauthenticated-p |