Function: move-to-column-untabify
move-to-column-untabify is a byte-compiled function defined in
array.el.gz.
Signature
(move-to-column-untabify COLUMN)
Documentation
Move to COLUMN on the current line, untabifying if necessary.
Return COLUMN.
Source Code
;; Defined in /usr/src/emacs/lisp/array.el.gz
(defun move-to-column-untabify (column)
"Move to COLUMN on the current line, untabifying if necessary.
Return COLUMN."
(or (and (= column (move-to-column column))
column)
;; There is a tab in the way.
(if array-respect-tabs
(error "There is a TAB character in the way")
(progn
(untabify-backward)
(move-to-column column)))))