Function: ses--span
ses--span is a byte-compiled function defined in ses.el.gz.
Signature
(ses--span ALIGN-FN VALUE FILL PRINTER)
Documentation
Helper function for Keymap ses-center-span is not currently defined. and Keymap ses-left-span is not currently defined.. Please refer to these functions help.
ALIGN-FN shall be a function such as Keymap ses-center is not currently defined. or Keymap ses-left is not currently defined..
Source Code
;; Defined in /usr/src/emacs/lisp/ses.el.gz
(defun ses--span (align-fn value fill printer)
"Helper function for \\{ses-center-span} and \\{ses-left-span}. Please refer to these functions help.
ALIGN-FN shall be a function such as \\{ses-center} or \\{ses-left}."
(let ((end (1+ ses--col)))
(while (and (< end ses--numcols)
(memq (ses-cell-value ses--row end) '(nil *skip*)))
(setq end (1+ end)))
(funcall align-fn value (- end ses--col 1) fill printer)))