summaryrefslogtreecommitdiff
path: root/lisp/textmodes
diff options
context:
space:
mode:
authorCarsten Dominik <dominik@science.uva.nl>2006-04-21 13:48:00 +0000
committerCarsten Dominik <dominik@science.uva.nl>2006-04-21 13:48:00 +0000
commit2fdb00aab2ff602c0470c7465a0f8241aee603b6 (patch)
tree114caf8daa198d82342d3f8f0f1d369ceebc56f5 /lisp/textmodes
parentbea5b1ba9a248a9f4a12c3be34561ce5b69ccc94 (diff)
downloademacs-2fdb00aab2ff602c0470c7465a0f8241aee603b6.tar.gz
(org-export-as-xoxo): Fix call to `indent-region'.
Diffstat (limited to 'lisp/textmodes')
-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>*"
;; Finish the buffer off and clean it up.
(switch-to-buffer-other-window out)
- (indent-region (point-min) (point-max))
+ (indent-region (point-min) (point-max) nil)
(save-buffer)
(goto-char (point-min))
)))