Przeglądaj źródła

Allow dashes and more in the ORGTBL SEND name

Carsten Dominik 15 lat temu
rodzic
commit
106ae88091
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      lisp/org-table.el

+ 1 - 1
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)