about summary refs log tree commit diff stats
path: root/init.el
diff options
context:
space:
mode:
authorCase Duckworth2021-09-26 17:21:05 -0500
committerCase Duckworth2021-09-26 17:21:05 -0500
commit09af84d74b3c56aae9ec7a8cc1f4e72050229ccf (patch)
treecb09eda299adbb08d8b8663c28ba046c8eb42a69 /init.el
parentWhitespace (diff)
downloademacs-09af84d74b3c56aae9ec7a8cc1f4e72050229ccf.tar.gz
emacs-09af84d74b3c56aae9ec7a8cc1f4e72050229ccf.zip
Correct simple-modeline--format for right fringe
Diffstat (limited to 'init.el')
-rw-r--r--init.el7
1 files changed, 5 insertions, 2 deletions
diff --git a/init.el b/init.el index f3e1cb5..04ffd95 100644 --- a/init.el +++ b/init.el
@@ -2063,8 +2063,11 @@ the default is \"/\"."
2063 left 2063 left
2064 (propertize " " 2064 (propertize " "
2065 'display (el-patch-swap 2065 'display (el-patch-swap
2066 `(space :align-to (- right ,reserve)) 2066 `((space :align-to (- right ,reserve)))
2067 `(space :align-to (- right (- 0 right-margin) ,reserve))) 2067 `((space :align-to
2068 (- right
2069 (- 1 right-fringe right-margin)
2070 ,reserve))))
2068 'face '(:inherit simple-modeline-space)) 2071 'face '(:inherit simple-modeline-space))
2069 right)))) 2072 right))))
2070 2073