branch: externals/setup
commit 5d1dd2e14467d4122611148ea0d39bfbacec7a0c
Author: Philip Kaludercic <phil...@posteo.net>
Commit: Philip Kaludercic <phil...@posteo.net>

    Use make-separator-line if available
---
 setup.el | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/setup.el b/setup.el
index f2cf76501e..466033a80f 100644
--- a/setup.el
+++ b/setup.el
@@ -129,7 +129,9 @@ Do not modify this variable by hand.  Instead use
               "that is immediately evaluated.")
       (fill-paragraph)
       (dolist (sym (sort (mapcar #'car setup-macros) #'string-lessp))
-        (newline 2)
+        (if (fboundp 'make-separator-line)
+            (insert "\n" (make-separator-line) "\n")
+          (newline 2))
         (let ((sig (mapcar
                     (lambda (arg)
                       (if (string-match "\\`&" (symbol-name arg))

Reply via email to