Function: table--char-in-str-at-column

table--char-in-str-at-column is a byte-compiled function defined in table.el.gz.

Signature

(table--char-in-str-at-column STR COLUMN)

Documentation

Return the character in STR at COLUMN location.

When COLUMN is out of range it returns null character.

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/table.el.gz
(defun table--char-in-str-at-column (str column)
  "Return the character in STR at COLUMN location.
When COLUMN is out of range it returns null character."
  (let ((idx (table--str-index-at-column str column)))
    (if idx (aref str idx)
      ?\0)))