Browse Source

Fix blockquote support

Carsten Dominik 15 years ago
parent
commit
5ccc098ebd
1 changed files with 2 additions and 2 deletions
  1. 2 2
      lisp/org-exp.el

+ 2 - 2
lisp/org-exp.el

@@ -1695,9 +1695,9 @@ These special cookies will later be interpreted by the backend."
 	(setq end (1+ (point-at-eol))
 	      end1 (1- (match-beginning 0)))
 	(setq content (org-remove-indentation (buffer-substring beg1 end1)))
-	(setq content (concat "ORG-" (upcase type) "-START\n"
+	(setq content (concat "ORG-" (upcase t1) "-START\n"
 			      content "\n"
-			      "ORG-" (upcase type) "-END\n"))
+			      "ORG-" (upcase t1) "-END\n"))
 	(delete-region beg end)
 	(insert (org-add-props content nil 'original-indentation ind))))))