summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Goaziou <mail@nicolasgoaziou.fr>2015-01-23 00:16:58 +0100
committerNicolas Goaziou <mail@nicolasgoaziou.fr>2015-01-23 00:16:58 +0100
commit53592f4e25fd630160b9b1b5e1f80d9f8b3c3435 (patch)
tree9100ea04477c56ba36cef4881cc137c2d9ff6f6b
parenta0095ce1a73f5805a5f48fedb5e314aa586f75ff (diff)
downloadorg-mode-53592f4e25fd630160b9b1b5e1f80d9f8b3c3435.tar.gz
org-table: Fix typo
* lisp/org-table.el (org-table-show-reference): Fix typo.
-rw-r--r--lisp/org-table.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/org-table.el b/lisp/org-table.el
index 175208c..f512684 100644
--- a/lisp/org-table.el
+++ b/lisp/org-table.el
@@ -3902,9 +3902,9 @@ With prefix ARG, apply the new formulas to the table."
(substring (match-string 0) 0 -1)
"$100"))
'range)
- ((or (org-in-regexp- org-table-range-regexp2)
- (org-in-regexp- org-table-translate-regexp)
- (org-in-regexp- org-table-range-regexp))
+ ((or (org-in-regexp org-table-range-regexp2)
+ (org-in-regexp org-table-translate-regexp)
+ (org-in-regexp org-table-range-regexp))
(setq match
(save-match-data
(org-table-convert-refs-to-rc (match-string 0))))