branch: externals/plz commit 1d3efc036c9fdb7242499575e4d6bdcc928b0539 Author: Adam Porter <a...@alphapapa.net> Commit: Adam Porter <a...@alphapapa.net>
Add: (plz) DELETE method --- plz.el | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/plz.el b/plz.el index 910bd9e96b..62fd5563b8 100644 --- a/plz.el +++ b/plz.el @@ -303,7 +303,9 @@ NOQUERY is passed to `make-process', which see." (list (cons "--request" (upcase (symbol-name method))) ;; It appears that this must be the last argument ;; in order to pass data on the rest of STDIN. - (cons data-arg "@-")))))) + (cons data-arg "@-"))) + ('delete + (list (cons "--request" (upcase (symbol-name method)))))))) (curl-config (cl-loop for (key . value) in curl-config-args concat (format "%s \"%s\"\n" key value))) (decode (pcase as