From: Carsten Dominik Date: Fri, 21 Apr 2006 13:48:00 +0000 (+0000) Subject: (org-export-as-xoxo): Fix call to `indent-region'. X-Git-Tag: emacs-pretest-22.0.90~3008 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=2fdb00aab2ff602c0470c7465a0f8241aee603b6;p=emacs.git (org-export-as-xoxo): Fix call to `indent-region'. --- 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-*" ;; 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)) )))