Prechádzať zdrojové kódy

Avoid refining of entries into themselves.

Reported by Samuel Wales.
Carsten Dominik 16 rokov pred
rodič
commit
e967f71794
2 zmenil súbory, kde vykonal 12 pridanie a 0 odobranie
  1. 3 0
      lisp/ChangeLog
  2. 9 0
      lisp/org.el

+ 3 - 0
lisp/ChangeLog

@@ -1,5 +1,8 @@
 2008-12-16  Carsten Dominik  <carsten.dominik@gmail.com>
 
+	* org.el (org-refile): Avoid refiling to within the region to be
+	refiled.
+
 	* org-export-latex.el (org-export-latex-special-chars): Replace
 	special characters also in tables.
 

+ 9 - 0
lisp/org.el

@@ -7598,6 +7598,15 @@ operation has put the subtree."
 	(setq file (nth 1 it)
 	      re (nth 2 it)
 	      pos (nth 3 it))
+	(if (and (equal (buffer-file-name) file)
+		 (if regionp
+		     (and (>= pos region-start)
+			  (<= pos region-end))
+		   (and (>= pos (point))
+			(< pos (save-excursion
+				 (org-end-of-subtree t t))))))
+	    (error "Cannot refile to position inside the tree or region"))
+		 
 	(setq nbuf (or (find-buffer-visiting file)
 		       (find-file-noselect file)))
 	(if goto