From 5fbcbffea86757e068a866643f3e7470dae1e10f Mon Sep 17 00:00:00 2001 From: Rasmus Date: Sat, 8 Aug 2015 23:11:39 +0200 Subject: [PATCH 1/5] org-table: Fix typo * org-table.el (org-table-goto-field): Fix typo. --- lisp/org-table.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/org-table.el b/lisp/org-table.el index 62de402..ef6427c 100644 --- a/lisp/org-table.el +++ b/lisp/org-table.el @@ -2567,7 +2567,7 @@ This function assumes the table is already analyzed (i.e., using (string-to-number (match-string 2 ref)))) (t (user-error "Unknown field: %s" ref)))) (line (car coordinates)) - (column (cdr coordinates)) + (column (cadr coordinates)) (create-new-column (if (functionp create-column-p) (funcall create-column-p column) create-column-p))) -- 2.5.0