浏览代码

Fix `interactive' statement in `org-table-convert-region'

* lisp/org-table.el (org-table-convert-region): Fix interactive statement.
Carsten Dominik 12 年之前
父节点
当前提交
29797e921d
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      lisp/org-table.el

+ 1 - 1
lisp/org-table.el

@@ -537,7 +537,7 @@ nil      When nil, the command tries to be smart and figure out the
          - when each line contains a TAB, assume TAB-separated material
          - when each line contains a comma, assume CSV material
          - else, assume one or more SPACE characters as separator."
-  (interactive "rP")
+  (interactive "r\nP")
   (let* ((beg (min beg0 end0))
 	 (end (max beg0 end0))
 	 re)