diff options
author | marty hiatt <martianhiatus@riseup.net> | 2024-07-18 11:25:46 +0200 |
---|---|---|
committer | marty hiatt <martianhiatus@riseup.net> | 2024-07-18 11:25:46 +0200 |
commit | e9ddf28832eb06f9731b74f3fff11c4606f05a70 (patch) | |
tree | 913dfdcc4203bb26ebe23e27d87025f85283070f /lisp | |
parent | 8f8c461e01a9cd85624b40bb158607f4240c80e6 (diff) |
horiz-bar refactor
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/mastodon-tl.el | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lisp/mastodon-tl.el b/lisp/mastodon-tl.el index a82d437..ac30005 100644 --- a/lisp/mastodon-tl.el +++ b/lisp/mastodon-tl.el @@ -239,9 +239,8 @@ If nil `(point-min)' is used instead.") "The timer that, when set will scan the buffer to update the timestamps.") (defvar mastodon-tl--horiz-bar - (if (char-displayable-p ?―) - (make-string 12 ?―) - (make-string 12 ?-))) + (make-string 12 + (if (char-displayable-p ?―) ?― ?-))) ;;; KEYMAPS |