aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--hypo.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/hypo.el b/hypo.el
index 4a197e5..5f179b9 100644
--- a/hypo.el
+++ b/hypo.el
@@ -121,7 +121,7 @@ STATUS is ignored."
(unless hypo--last-post (error "Nothing posted this session"))
(let ((url-request-method "DELETE")
(url (format "%s/%s" hypo-instance-url hypo--last-post)))
- (url-retrieve url #'ignore)
+ (url-retrieve url (lambda (status) (ignore status) (kill-buffer)))
(setq hypo--last-post nil)
(message "Deleted %s" url)))