Function: ses-left-span
ses-left-span is a byte-compiled function defined in ses.el.gz.
Signature
(ses-left-span VALUE &optional FILL PRINTER)
Documentation
Print VALUE, aligned left within the span that starts in the current column and continues until the next nonblank column. FILL specifies the fill character (default = '-').
Source Code
;; Defined in /usr/src/emacs/lisp/ses.el.gz
(defun ses-left-span (value &optional fill printer)
"Print VALUE, aligned left within the span that starts in the current column
and continues until the next nonblank column.
FILL specifies the fill character (default = '-')."
(ses--span #'ses-left value fill printer))