Function: ert-font-lock--point-at-line-and-column

ert-font-lock--point-at-line-and-column is a byte-compiled function defined in ert-font-lock.el.gz.

Signature

(ert-font-lock--point-at-line-and-column LINE COLUMN)

Documentation

Get the buffer position for LINE and COLUMN.

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/ert-font-lock.el.gz
(defun ert-font-lock--point-at-line-and-column (line column)
  "Get the buffer position for LINE and COLUMN."
  (save-excursion
    (goto-char (point-min))
    (forward-line (1- line))
    (move-to-column column)
    (point)))