Forráskód Böngészése

Reverted the change that killed html buffer after export.

The side effects for org-export-to-html-and-open, and for the
publishing commands need to be studied first.
Carsten Dominik 17 éve
szülő
commit
e89aa69bc6
2 módosított fájl, 17 hozzáadás és 11 törlés
  1. 6 0
      ChangeLog
  2. 11 11
      org.el

+ 6 - 0
ChangeLog

@@ -1,3 +1,9 @@
+2008-03-07  Carsten Dominik  <dominik@science.uva.nl>
+
+	* org.el (org-export-as-html): Revert the change that killed the
+	html buffer.  Side effects first need to be studied carefully.
+	(org-get-tags-at): Fix the structure of the condition-case statement.
+
 2008-03-06  Bastien Guerry  <bzg@altern.org>
 
 	* org.el (org-get-legal-level): Aliased to `org-get-valid-level'.

+ 11 - 11
org.el

@@ -23329,15 +23329,16 @@ the tags of the current headline come last."
 	(goto-char (or pos (point)))
 	(save-match-data
 	  (condition-case nil
-	      (org-back-to-heading t)
-	      (while (not (equal lastpos (point)))
-		(setq lastpos (point))
-		(if (looking-at (org-re "[^\r\n]+?:\\([[:alnum:]_@:]+\\):[ \t]*$"))
-		    (setq tags (append (org-split-string
-					(org-match-string-no-properties 1) ":")
-				       tags)))
-	      (or org-use-tag-inheritance (error ""))
-	      (org-up-heading-all 1))
+	      (progn
+		(org-back-to-heading t)
+		(while (not (equal lastpos (point)))
+		  (setq lastpos (point))
+		  (if (looking-at (org-re "[^\r\n]+?:\\([[:alnum:]_@:]+\\):[ \t]*$"))
+		      (setq tags (append (org-split-string
+					  (org-match-string-no-properties 1) ":")
+					 tags)))
+		  (or org-use-tag-inheritance (error ""))
+		  (org-up-heading-all 1)))
 	    (error nil))))
       tags)))
 
@@ -26100,8 +26101,7 @@ lang=\"%s\" xml:lang=\"%s\">
 	  (delete-region beg end)
 	  (insert (format "<span style=\"visibility:hidden;\">%s</span>"
 			  (make-string n ?x)))))
-
-      (or to-buffer (progn (save-buffer) (kill-buffer (current-buffer))))
+      (or to-buffer (save-buffer))
       (goto-char (point-min))
       (message "Exporting... done")
       (if (eq to-buffer 'string)