diff options
author | marty hiatt <martianhiatus [a t] riseup [d o t] net> | 2022-12-30 10:23:04 +1100 |
---|---|---|
committer | marty hiatt <martianhiatus [a t] riseup [d o t] net> | 2022-12-30 10:23:04 +1100 |
commit | 101e2c7ee74bfa1df6bb3d31a9daeca6a0a75243 (patch) | |
tree | fc0852d57b1ac426f319e201c5b6fb39b9d7df1b | |
parent | ac56ee7d12f98e1ff4f47fb0f354ec757ca73592 (diff) |
`mastodon-tl--set-after-update-marker' - add `t` to last cond branch
-rw-r--r-- | lisp/mastodon-tl.el | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/mastodon-tl.el b/lisp/mastodon-tl.el index b3427fc..0a30186 100644 --- a/lisp/mastodon-tl.el +++ b/lisp/mastodon-tl.el @@ -2788,8 +2788,9 @@ from the start if it is nil." (next-single-property-change (or mastodon-tl--update-point (point-min)) 'byline)) - (error "Unknown mastodon-tl-position-after-update value %S" - mastodon-tl-position-after-update))) + (t + (error "Unknown mastodon-tl-position-after-update value %S" + mastodon-tl-position-after-update)))) ;; Make the marker advance if text gets inserted there. (set-marker-insertion-type marker t) (setq mastodon-tl--after-update-marker marker)) |