diff options
author | marty hiatt <martianhiatus [a t] riseup [d o t] net> | 2023-10-09 18:49:50 +0200 |
---|---|---|
committer | marty hiatt <martianhiatus [a t] riseup [d o t] net> | 2023-10-09 18:49:50 +0200 |
commit | 95783691ab152ad5b1da5c9fbdfe638983565ab1 (patch) | |
tree | 2379d904f8fa7782abae4d8388482c33ec74ada4 /lisp/mastodon-views.el | |
parent | 3442dd296a39a065fd1c15bb37e00e52d6d7e857 (diff) |
inhibit-read-only typo fix
Diffstat (limited to 'lisp/mastodon-views.el')
-rw-r--r-- | lisp/mastodon-views.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/mastodon-views.el b/lisp/mastodon-views.el index f942729..270648c 100644 --- a/lisp/mastodon-views.el +++ b/lisp/mastodon-views.el @@ -785,7 +785,7 @@ INSTANCE is the instance were are working with." (format "*mastodon-instance-%s*" domain)))) (with-mastodon-buffer buf #'special-mode :other-window (if misskey - (let ((inihibit-read-only t)) + (let ((inhibit-read-only t)) (insert (prin1-to-string response)) (pp-buffer) (goto-char (point-min))) |