Преглед на файлове

Fix commenting lines beginning with a link

* lisp/org.el (org-comment-or-uncomment-region): Fix commenting lines
  beginning with a link.
Nicolas Goaziou преди 12 години
родител
ревизия
fffc2b980c
променени са 1 файла, в които са добавени 4 реда и са изтрити 1 реда
  1. 4 1
      lisp/org.el

+ 4 - 1
lisp/org.el

@@ -22071,7 +22071,10 @@ contains commented lines.  Otherwise, comment them."
 	    (goto-char (point-min))
 	    (while (not (eobp))
 	      (unless (and (not comment-empty-lines) (looking-at "[ \t]*$"))
-		(org-move-to-column min-indent t)
+		;; Don't get fooled by invisible text (e.g. link path)
+		;; when moving to column MIN-INDENT.
+		(let ((buffer-invisibility-spec nil))
+		  (org-move-to-column min-indent t))
 		(insert comment-start))
 	      (forward-line))))))))