aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCarsten Dominik2006-04-21 13:48:00 +0000
committerCarsten Dominik2006-04-21 13:48:00 +0000
commit2fdb00aab2ff602c0470c7465a0f8241aee603b6 (patch)
tree114caf8daa198d82342d3f8f0f1d369ceebc56f5
parentbea5b1ba9a248a9f4a12c3be34561ce5b69ccc94 (diff)
downloademacs-2fdb00aab2ff602c0470c7465a0f8241aee603b6.tar.gz
emacs-2fdb00aab2ff602c0470c7465a0f8241aee603b6.zip
(org-export-as-xoxo): Fix call to `indent-region'.
-rw-r--r--lisp/textmodes/org.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/textmodes/org.el b/lisp/textmodes/org.el
index f175671e3f4..3c18eda2305 100644
--- a/lisp/textmodes/org.el
+++ b/lisp/textmodes/org.el
@@ -12436,7 +12436,7 @@ The XOXO buffer is named *xoxo-<source buffer name>*"
12436 12436
12437 ;; Finish the buffer off and clean it up. 12437 ;; Finish the buffer off and clean it up.
12438 (switch-to-buffer-other-window out) 12438 (switch-to-buffer-other-window out)
12439 (indent-region (point-min) (point-max)) 12439 (indent-region (point-min) (point-max) nil)
12440 (save-buffer) 12440 (save-buffer)
12441 (goto-char (point-min)) 12441 (goto-char (point-min))
12442 ))) 12442 )))