branch: elpa/fedi
commit 275eae8e092d2557571c5a36d0d0856a12d66a86
Author: marty hiatt <[email protected]>
Commit: marty hiatt <[email protected]>

    clean up horiz bar
---
 fedi.el | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/fedi.el b/fedi.el
index f27da33daf9..3f28bb42154 100644
--- a/fedi.el
+++ b/fedi.el
@@ -245,9 +245,9 @@ text, i.e. hidden spoiler text."
 ;;; HEADINGS
 
 (defvar fedi-horiz-bar
-  (if (char-displayable-p ?―)
-      (make-string 12 ?―)
-    (make-string 12 ?-)))
+  (let ((count 16))
+    (make-string count
+                 (if (char-displayable-p ?―) ?― ?-))))
 
 (defun fedi-format-heading (name)
   "Format a heading for NAME, a string."

Reply via email to