0
0
Fork 1
mirror of https://git.savannah.gnu.org/git/emacs/org-mode.git synced 2024-09-29 18:36:26 +00:00

org-table: Fix code typo

* lisp/org-table.el (org-table-analyze): Fix code typo introduced in
  5702908.
This commit is contained in:
Nicolas Goaziou 2015-11-11 01:28:27 +01:00
parent 57029084b5
commit 7bd20d0c6e

View file

@ -2537,7 +2537,7 @@ This function sets up the following dynamically scoped variables:
(setq org-table-hlines (apply #'vector (cons nil (nreverse hlines)))))
;; Get the number of columns from the first data line in table.
(goto-char beg)
(forward-line (aref org-table-dlines 0))
(forward-line (aref org-table-dlines 1))
(let* ((fields
(org-split-string
(buffer-substring (line-beginning-position) (line-end-position))