# HG changeset patch # User Carsten Dominik # Date 1145627280 0 # Node ID 1f7b0f5ff85286ebabdbc923dfb1130b47d7208d # Parent b9e09a4a216832efc25d8faf3ddf650618cb0007 (org-export-as-xoxo): Fix call to `indent-region'. diff -r b9e09a4a2168 -r 1f7b0f5ff852 lisp/textmodes/org.el --- a/lisp/textmodes/org.el Fri Apr 21 13:45:58 2006 +0000 +++ b/lisp/textmodes/org.el Fri Apr 21 13:48:00 2006 +0000 @@ -12436,7 +12436,7 @@ ;; 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)) )))