diff options
author | marty hiatt <martianhiatus [a t] riseup [d o t] net> | 2023-05-09 20:01:12 +0200 |
---|---|---|
committer | marty hiatt <martianhiatus [a t] riseup [d o t] net> | 2023-05-09 20:01:12 +0200 |
commit | c8fa23d5b587dbc0db705d991622dcbb762e4f25 (patch) | |
tree | 706cab2306b5d69b99c8280b82cc5b16eef0117b | |
parent | 45b5d3f460e6c5578b35eee4ed5a904b8fbeae91 (diff) |
fix print instance rules propertize call
-rw-r--r-- | lisp/mastodon-views.el | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lisp/mastodon-views.el b/lisp/mastodon-views.el index 9974071..0dd74a3 100644 --- a/lisp/mastodon-views.el +++ b/lisp/mastodon-views.el @@ -892,8 +892,7 @@ IND is the optional indentation level to print at." (indent-to 4) (insert (format "%-5s: " - (propertize key) - 'face '(:underline t)) + (propertize key 'face '(:underline t))) (mastodon-views--newline-if-long value) (format "%s" (mastodon-tl--render-text value)) |