Function: ses-dashfill
ses-dashfill is a byte-compiled function defined in ses.el.gz.
Signature
(ses-dashfill VALUE &optional SPAN PRINTER)
Documentation
Print VALUE centered using dashes.
SPAN indicates how many rightward columns to include in width (default = 0).
Source Code
;; Defined in /usr/src/emacs/lisp/ses.el.gz
(defun ses-dashfill (value &optional span printer)
"Print VALUE centered using dashes.
SPAN indicates how many rightward columns to include in width (default = 0)."
(ses-center value span ?- printer))