Function: dcl-option-value-margin-offset

dcl-option-value-margin-offset is a byte-compiled function defined in dcl-mode.el.gz.

Signature

(dcl-option-value-margin-offset OPTION-ASSOC)

Documentation

Guess a value for margin offset.

Find the column of the first non-blank character on the line, not counting labels. Returns a number as a string.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/dcl-mode.el.gz
;;;-------------------------------------------------------------------------
(defun dcl-option-value-margin-offset (_option-assoc)
  "Guess a value for margin offset.
Find the column of the first non-blank character on the line, not
counting labels.
Returns a number as a string."
  (save-excursion
    (beginning-of-line)
    (dcl-back-to-indentation)
    (current-column)))