1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-30 04:10:54 -08:00

* lisp/ses.el (ses-print-cell): Fix alignment of text cells. (Bug#27653)

This commit is contained in:
Gemini Lasswell 2017-10-05 16:49:34 +03:00 committed by Eli Zaretskii
parent c625fb645a
commit 0c8f4e5ea1

View file

@ -1254,8 +1254,7 @@ preceding cell has spilled over."
((< len width)
;; Fill field to length with spaces.
(setq len (make-string (- width len) ?\s)
text (if (or (stringp value)
(eq ses-call-printer-return t))
text (if (eq ses-call-printer-return t)
(concat text len)
(concat len text))))
((> len width)