From da3b761e2e5fb10f1512befb7399a198e2419faa Mon Sep 17 00:00:00 2001 From: Gemini Lasswell Date: Sat, 30 Sep 2017 10:31:25 -0700 Subject: [PATCH] * lisp/ses.el (ses-print-cell): Fix alignment of text cells (bug#27653) --- lisp/ses.el | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lisp/ses.el b/lisp/ses.el index 9221476e7a..4c19c70c5d 100644 --- a/lisp/ses.el +++ b/lisp/ses.el @@ -1254,8 +1254,7 @@ ses-print-cell ((< 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) -- 2.14.1