summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarsten Dominik <carsten.dominik@gmail.com>2010-04-18 08:11:07 +0200
committerCarsten Dominik <carsten.dominik@gmail.com>2010-04-18 08:11:07 +0200
commit106ae88091f6cb320845b2b77697b603c2b948e0 (patch)
tree1310a5ba26959b6a63fe6eb03582940fadad7fa2
parent2ca29086f19f3d8fb32d9ca0e1e9bfa694d3c9e3 (diff)
downloadorg-mode-106ae88091f6cb320845b2b77697b603c2b948e0.tar.gz
Allow dashes and more in the ORGTBL SEND name
-rw-r--r--lisp/org-table.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/org-table.el b/lisp/org-table.el
index 5839203..1d463a0 100644
--- a/lisp/org-table.el
+++ b/lisp/org-table.el
@@ -3800,7 +3800,7 @@ a radio table."
(goto-char (org-table-begin))
(let (rtn)
(beginning-of-line 0)
- (while (looking-at "[ \t]*#\\+ORGTBL[: \t][ \t]*SEND +\\([a-zA-Z0-9_]+\\) +\\([^ \t\r\n]+\\)\\( +.*\\)?")
+ (while (looking-at "[ \t]*#\\+ORGTBL[: \t][ \t]*SEND[ \t]+\\([^ \t\r\n]+\\)[ \t]+\\([^ \t\r\n]+\\)\\([ \t]+.*\\)?")
(let ((name (org-no-properties (match-string 1)))
(transform (intern (match-string 2)))
(params (if (match-end 3)