diff options
| author | Daniel Mendler <mail@daniel-mendler.de> | 2023-04-07 10:31:58 +0200 |
|---|---|---|
| committer | Daniel Mendler <mail@daniel-mendler.de> | 2023-04-07 10:31:58 +0200 |
| commit | 98bd9c1b238633d283b1e6cfd6bb01307d57627e (patch) | |
| tree | 304e03bec51afe96e0d0fa1d633afa84dbd80fc2 /compat-28.el | |
| parent | cb09942868d50e654f159f9614fe3f22af96e547 (diff) | |
make-separator-line: Do not use undefined separator-line face
Diffstat (limited to 'compat-28.el')
| -rw-r--r-- | compat-28.el | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/compat-28.el b/compat-28.el index 4cca3c2..56be530 100644 --- a/compat-28.el +++ b/compat-28.el @@ -221,9 +221,7 @@ and BLUE, is normalized to have its value in [0,65535]." (compat-defun make-separator-line (&optional length) ;; <compat-tests:make-separator-line> "Make a string appropriate for usage as a visual separator line. If LENGTH is nil, use the window width." - (concat (propertize (make-string (or length (1- (window-width))) ?-) - 'face 'separator-line) - "\n")) + (concat (make-string (or length (1- (window-width))) ?-) "\n")) ;;;; Defined in subr.el |
