瀏覽代碼

org.el: Don't allow creation of parents when using refile as goto.

* org.el (org-refile): Don't allow creation of parents when
using the refile command to go to a headline.

TINYCHANGE
Bastien Guerry 13 年之前
父節點
當前提交
c73f32c14a
共有 1 個文件被更改,包括 2 次插入1 次删除
  1. 2 1
      lisp/org.el

+ 2 - 1
lisp/org.el

@@ -10642,7 +10642,8 @@ prefix argument (`C-u C-u C-u C-c C-w')."
 				       (t (concat "Refile subtree \""
 						  heading-text "\" to")))
 				 default-buffer
-				 org-refile-allow-creating-parent-nodes
+				 (and (not (equal '(4) goto))
+				      org-refile-allow-creating-parent-nodes)
 				 goto))))))
 	  (setq file (nth 1 it)
 		re (nth 2 it)