Function: calendar-move-to-column
calendar-move-to-column is a byte-compiled function defined in
calendar.el.gz.
Signature
(calendar-move-to-column INDENT)
Documentation
Like move-to-column, but indents if the line is too short.
Source Code
;; Defined in /usr/src/emacs/lisp/calendar/calendar.el.gz
(defun calendar-move-to-column (indent)
"Like `move-to-column', but indents if the line is too short."
(if (< (move-to-column indent) indent)
(indent-to indent)))