diff options
author | Oleh Krehel <ohwoeowho@gmail.com> | 2019-08-03 22:00:40 +0200 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2019-08-03 22:03:27 +0200 |
commit | 9fbae679ad59dfc7ea17f20aac73085b494b5512 (patch) | |
tree | 838c9625d866b1c1d7c5f637b51d4f1d45d48e87 /lisp | |
parent | 13fe8a27042b1539d43727e6df97c386c61c3053 (diff) | |
download | emacs-9fbae679ad59dfc7ea17f20aac73085b494b5512.tar.gz |
calc mode line touch up
* lisp/calc/calc.el (calc-set-mode-line): Don't put excessive
white space in mode line (bug#18079).
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/calc/calc.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/calc/calc.el b/lisp/calc/calc.el index 3a9a2804cf2..8e762962735 100644 --- a/lisp/calc/calc.el +++ b/lisp/calc/calc.el @@ -1663,7 +1663,7 @@ See calc-keypad for details." (let* ((fmt (car calc-float-format)) (figs (nth 1 calc-float-format)) (new-mode-string - (format "Calc%s%s: %d %s %-14s" + (format "Calc%s%s: %d %s %s" (if (and calc-embedded-info (eq (aref calc-embedded-info 1) (current-buffer))) "Embed" "") |