Variable: opascal-compound-block-indent

opascal-compound-block-indent is a customizable variable defined in opascal.el.gz.

Value

0

Documentation

Extra indentation for blocks in compound statements. E.g.

// block indent = 0 vs // block indent = 2
if b then if b then
begin begin
end else begin end
end; else
                                  begin
                                  end;

Aliases

delphi-compound-block-indent (obsolete since 24.4)

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/opascal.el.gz
(defcustom opascal-compound-block-indent 0
  "Extra indentation for blocks in compound statements.  E.g.

// block indent = 0     vs      // block indent = 2
if b then                       if b then
begin                             begin
end else begin                    end
end;                            else
                                  begin
                                  end;"
  :type 'integer)