From 97eef5ed0722b35a9e5055e42429ef48c3f29ffe Mon Sep 17 00:00:00 2001 From: Carsten Dominik Date: Sat, 3 May 2008 16:38:34 +0200 Subject: [PATCH] Typo fixes. --- lisp/org-exp.el | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lisp/org-exp.el b/lisp/org-exp.el index 70878ae2b..2e0d456cb 100644 --- a/lisp/org-exp.el +++ b/lisp/org-exp.el @@ -1324,7 +1324,7 @@ on this string to produce the exported version." (goto-char (point-min)) (while (re-search-forward "^#\\+\\(begin\\|end\\)_\\(block\\)quote\\>.*" nil t) (replace-match (if (equal (downcase (match-string 1)) "end") - "ORG-BLOCKUQUOTE-END" "ORG-BLOCKUQUOTE-START") + "ORG-BLOCKQUOTE-END" "ORG-BLOCKQUOTE-START") t t)) ;; Remove subtrees that are commented @@ -2551,10 +2551,10 @@ lang=\"%s\" xml:lang=\"%s\"> (throw 'nextline nil)) ;; Blockquotes - (when (equal "ORG-BLOCKUQUOTE-START" line) + (when (equal "ORG-BLOCKQUOTE-START" line) (insert "
\n

\n") (throw 'nextline nil)) - (when (equal "ORG-BLOCKUQUOTE-END" line) + (when (equal "ORG-BLOCKQUOTE-END" line) (insert "

\n
\n") (throw 'nextline nil))