From d792b57ffc4e1672b92aaf2f67aac44f6aa6c217 Mon Sep 17 00:00:00 2001 From: Bastien Date: Fri, 29 Dec 2017 18:14:42 +0100 Subject: [PATCH] org-table: Correctly match ".[0-9]+" as a number * lisp/org-table.el (org-table-copy-down): Correctly match ".[0-9]+" as a number. --- 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 6ebd6da9d..8046daab1 100644 --- a/lisp/org-table.el +++ b/lisp/org-table.el @@ -1166,7 +1166,7 @@ to a number. In the case of a timestamp, increment by days." (- (org-time-string-to-absolute txt) (org-time-string-to-absolute txt-up))) ((string-match org-ts-regexp3 txt) 1) - ((string-match "\\([-+]\\)?[0-9]+\\(?:\.[0-9]+\\)?" txt-up) + ((string-match "\\([-+]\\)?\\(?:[0-9]+\\)?\\(?:\.[0-9]+\\)?" txt-up) (- (string-to-number txt) (string-to-number (match-string 0 txt-up)))) (t 1)))