Function: array-move-to-column-untabify
array-move-to-column-untabify is a byte-compiled function defined in
array.el.gz.
Signature
(array-move-to-column-untabify COLUMN)
Documentation
Move to COLUMN on the current line, untabifying if necessary.
Return COLUMN.
Aliases
move-to-column-untabify (obsolete since 29.1)
Source Code
;; Defined in /usr/src/emacs/lisp/array.el.gz
(defun array-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
(array--untabify-backward)
(move-to-column column)))))