Variable: org-table-convert-region-max-lines

org-table-convert-region-max-lines is a customizable variable defined in org-table.el.gz.

Value

999

Documentation

Max lines that org-table-convert-region will attempt to process.

The function can be slow on larger regions; this safety feature prevents it from hanging Emacs.

This variable was added, or its default value changed, in Org version
8.3.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-table.el.gz
(defcustom org-table-convert-region-max-lines 999
  "Max lines that `org-table-convert-region' will attempt to process.

The function can be slow on larger regions; this safety feature
prevents it from hanging Emacs."
  :group 'org-table-import-export
  :type 'integer
  :package-version '(Org . "8.3"))