diff options
author | Alexander Griffith <griffitaj@gmail.com> | 2017-04-24 21:12:02 -0400 |
---|---|---|
committer | Johnson Denen <johnson.denen@gmail.com> | 2017-04-27 16:04:28 -0400 |
commit | 91020494acfe590f19c9e2510be2377f2d69fdfe (patch) | |
tree | 65541f835391befe74ad1e8e6fb13317ecb0aab4 /lisp/mastodon-toot.el | |
parent | 075fc0eb2c4f4fb356339ed27370ea477a7b47e4 (diff) |
#70 all tabs to spaces
Diffstat (limited to 'lisp/mastodon-toot.el')
-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))) |