Function: widget-documentation-string-indent-to

widget-documentation-string-indent-to is a byte-compiled function defined in wid-edit.el.gz.

Signature

(widget-documentation-string-indent-to COL)

Source Code

;; Defined in /usr/src/emacs/lisp/wid-edit.el.gz
(defun widget-documentation-string-indent-to (col)
  (when (and (numberp col)
	     (> col 0))
    (let ((opoint (point)))
      (indent-to col)
      (put-text-property opoint (point)
                         'display `(space :align-to ,col)))))