diff options
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/mastodon-toot.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/mastodon-toot.el b/lisp/mastodon-toot.el index 7d5a362..8197ba5 100644 --- a/lisp/mastodon-toot.el +++ b/lisp/mastodon-toot.el @@ -49,10 +49,10 @@ (defun mastodon-toot--action-success-undo (marker) "Remove MARKER from byline." (let ((inhibit-read-only t) - (start (progn (move-beginning-of-line '()) - (point))) - (end (progn (move-end-of-line '()) - (point)))) + (start (progn (move-beginning-of-line '()) + (point))) + (end (progn (move-end-of-line '()) + (point)))) (replace-regexp (format "(%s) " marker) "" '() start end) (move-beginning-of-line '()) (mastodon-tl--goto-next-toot))) |