From: Gemini Lasswell Date: Thu, 5 Oct 2017 13:49:34 +0000 (+0300) Subject: * lisp/ses.el (ses-print-cell): Fix alignment of text cells. (Bug#27653) X-Git-Tag: emacs-26.0.90~45^2~27 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=0c8f4e5ea122df9526037286e95844c64f3d964d;p=emacs.git * lisp/ses.el (ses-print-cell): Fix alignment of text cells. (Bug#27653) --- diff --git a/lisp/ses.el b/lisp/ses.el index 9221476e7a1..4c19c70c5da 100644 --- a/lisp/ses.el +++ b/lisp/ses.el @@ -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)