Function: align-column

align-column is a byte-compiled function defined in align.el.gz.

Signature

(align-column POS)

Documentation

Given a position in the buffer, state what column it's in.

POS is the position whose column will be taken. Note that this function will change the location of point.

Source Code

;; Defined in /usr/src/emacs/lisp/align.el.gz
(defsubst align-column (pos)
  "Given a position in the buffer, state what column it's in.
POS is the position whose column will be taken.  Note that this
function will change the location of point."
  (goto-char pos)
  (current-column))