summary refs log tree commit diff stats
path: root/lisp/+modeline.el
diff options
context:
space:
mode:
authorCase Duckworth2022-01-28 17:25:07 -0600
committerCase Duckworth2022-01-28 17:25:07 -0600
commite559dd78806eade4aa034c256060a9cd26a7a70f (patch)
treecee4ada05a9ec743a89de1be96ab35027785448a /lisp/+modeline.el
parentMove org-download (diff)
downloademacs-e559dd78806eade4aa034c256060a9cd26a7a70f.tar.gz
emacs-e559dd78806eade4aa034c256060a9cd26a7a70f.zip
Don't pad region
Diffstat (limited to 'lisp/+modeline.el')
-rw-r--r--lisp/+modeline.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/+modeline.el b/lisp/+modeline.el index 4217d13..300787a 100644 --- a/lisp/+modeline.el +++ b/lisp/+modeline.el
@@ -207,7 +207,7 @@ The order of elements matters: whichever one matches first is applied."
207 (when (and region-indicator-mode 207 (when (and region-indicator-mode
208 (region-active-p)) 208 (region-active-p))
209 (list 209 (list
210 (format "%s%6s" 210 (format "%s%s"
211 (or spacer +modeline-default-spacer) 211 (or spacer +modeline-default-spacer)
212 (propertize (format "%s%d" 212 (propertize (format "%s%d"
213 (if (and (< (point) (mark))) "-" "+") 213 (if (and (< (point) (mark))) "-" "+")