aboutsummaryrefslogtreecommitdiff
path: root/lisp/mastodon-http.el
diff options
context:
space:
mode:
authorAbhiseck Paira <abhiseckpaira@disroot.org>2022-02-23 14:24:37 +0530
committerAbhiseck Paira <abhiseckpaira@disroot.org>2022-02-23 14:24:37 +0530
commit0af5b491d14d521c03ebc48d82608afd65166e90 (patch)
tree3cc559ec30068b1ec739ca6af893c2ba377f5a12 /lisp/mastodon-http.el
parent77c173afc1f24fa371c41d0c59b94a8650eb4f61 (diff)
change '-' to '--' in between function and namespace names
mastodon.el currently follows the convention where all function names should have two dashes (not one dash) in between function and namespace names. Update all function names to follow this convention. See issue #205 and pull request #255
Diffstat (limited to 'lisp/mastodon-http.el')
-rw-r--r--lisp/mastodon-http.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/mastodon-http.el b/lisp/mastodon-http.el
index 8e96b39..05c9d2e 100644
--- a/lisp/mastodon-http.el
+++ b/lisp/mastodon-http.el
@@ -157,7 +157,7 @@ Pass response buffer to CALLBACK function."
(with-temp-buffer
(mastodon-http--url-retrieve-synchronously url))))
-(defun mastodon-http-append-query-string (url params)
+(defun mastodon-http--append-query-string (url params)
"Append PARAMS to URL as query strings and return it.
PARAMS should be an alist as required `url-build-query-string'."