diff options
author | Case Duckworth | 2022-01-28 17:25:07 -0600 |
---|---|---|
committer | Case Duckworth | 2022-01-28 17:25:07 -0600 |
commit | e559dd78806eade4aa034c256060a9cd26a7a70f (patch) | |
tree | cee4ada05a9ec743a89de1be96ab35027785448a /lisp | |
parent | Move org-download (diff) | |
download | emacs-e559dd78806eade4aa034c256060a9cd26a7a70f.tar.gz emacs-e559dd78806eade4aa034c256060a9cd26a7a70f.zip |
Don't pad region
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/+modeline.el | 2 |
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))) "-" "+") |