Function: table--cell-blank-str

table--cell-blank-str is a byte-compiled function defined in table.el.gz.

Signature

(table--cell-blank-str &optional N)

Documentation

Return blank table cell string of length N.

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/table.el.gz
(defun table--cell-blank-str (&optional n)
  "Return blank table cell string of length N."
  (let ((str (make-string (or n 1) ?\s)))
    (table--put-cell-content-property 0 (length str) str)
    str))