Make the colon in "ORGTBL: SEND" optional.

This commit is contained in:
Carsten Dominik 2008-05-14 14:28:08 +02:00
parent d2795c72c8
commit 80fb3351de
1 changed files with 1 additions and 1 deletions

View File

@ -3510,7 +3510,7 @@ a radio table."
(goto-char (org-table-begin))
(let (rtn)
(beginning-of-line 0)
(while (looking-at "#\\+ORGTBL: *SEND +\\([a-zA-Z0-9_]+\\) +\\([^ \t\r\n]+\\)\\( +.*\\)?")
(while (looking-at "#\\+ORGTBL[: \t][ \t]*SEND +\\([a-zA-Z0-9_]+\\) +\\([^ \t\r\n]+\\)\\( +.*\\)?")
(let ((name (org-no-properties (match-string 1)))
(transform (intern (match-string 2)))
(params (if (match-end 3)