branch: elpa/mastodon
commit 328b8a354ed6174473a9dfd8a078c324e49df87b
Author: marty hiatt <[email protected]>
Commit: marty hiatt <[email protected]>
adjust inspect-toot
---
lisp/mastodon-inspect.el | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/lisp/mastodon-inspect.el b/lisp/mastodon-inspect.el
index 4981943f2b..779598984a 100644
--- a/lisp/mastodon-inspect.el
+++ b/lisp/mastodon-inspect.el
@@ -51,10 +51,10 @@
(erase-buffer)
(let ((print-level nil)
(print-length nil))
- (insert (pp json t)))
- (goto-char (point-min))
- (emacs-lisp-mode)
- (message "success"))
+ (pp json (current-buffer))
+ (goto-char (point-min))
+ (emacs-lisp-mode)
+ (message "success")))
(defun mastodon-inspect--toot ()
"Find next toot and dump its meta data into new buffer."