aboutsummaryrefslogtreecommitdiff
path: root/lisp/mastodon-inspect.el
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/mastodon-inspect.el')
-rw-r--r--lisp/mastodon-inspect.el12
1 files changed, 6 insertions, 6 deletions
diff --git a/lisp/mastodon-inspect.el b/lisp/mastodon-inspect.el
index 989269e..9ae5049 100644
--- a/lisp/mastodon-inspect.el
+++ b/lisp/mastodon-inspect.el
@@ -39,12 +39,12 @@
(defun mastodon-inspect--dump-json-in-buffer (name json)
"Buffer NAME is opened and JSON in printed into it."
(switch-to-buffer-other-window name)
- (progn (setf print-level nil
- print-length nil)
- (insert (pp json t))
- (goto-char 1)
- (emacs-lisp-mode)
- (message "success")))
+ (setf print-level nil
+ print-length nil)
+ (insert (pp json t))
+ (goto-char 1)
+ (emacs-lisp-mode)
+ (message "success"))
(defun mastodon-inspect--toot ()
"Find next toot and dump its meta data into new buffer."