Variable: delimit-columns-end

delimit-columns-end is a customizable variable defined in delim-col.el.gz.

Value

1000000

Documentation

Specify column number to end prettifying.

See also delimit-columns-start for documentation.

The following relation must hold:
   0 <= delimit-columns-start <= delimit-columns-end

The column number starts at 0 and is relative to the beginning of the selected region. So if you select a text region, the first column (column 0) is located at the beginning of line. If you select a text rectangle, the first column (column 0) is located at the left corner.

Source Code

;; Defined in /usr/src/emacs/lisp/delim-col.el.gz
(defcustom delimit-columns-end 1000000
  "Specify column number to end prettifying.

See also `delimit-columns-start' for documentation.

The following relation must hold:
   0 <= delimit-columns-start <= delimit-columns-end

The column number starts at 0 and is relative to the beginning of
the selected region.  So if you select a text region, the first
column (column 0) is located at the beginning of line.  If you
select a text rectangle, the first column (column 0) is located
at the left corner."
  :type '(integer :tag "Column End")
  :group 'columns)