浏览代码

org.el (org-comment-dwim): Fix docstring location

* org.el (org-comment-dwim): Fix docstring location.
Bastien Guerry 10 年之前
父节点
当前提交
31c7e3f065
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      lisp/org.el

+ 1 - 1
lisp/org.el

@@ -23194,8 +23194,8 @@ strictly within a source block, use appropriate comment syntax."
 		(forward-line)))))))))
 
 (defun org-comment-dwim (arg)
-  (interactive "*P")
   "Call `comment-dwim' within a source edit buffer if needed."
+  (interactive "*P")
   (if (org-in-src-block-p)
       (org-babel-do-in-edit-buffer (call-interactively 'comment-dwim))
     (call-interactively 'comment-dwim)))