diff options
author | Carsten Dominik <dominik@science.uva.nl> | 2006-04-21 13:48:00 +0000 |
---|---|---|
committer | Carsten Dominik <dominik@science.uva.nl> | 2006-04-21 13:48:00 +0000 |
commit | 2fdb00aab2ff602c0470c7465a0f8241aee603b6 (patch) | |
tree | 114caf8daa198d82342d3f8f0f1d369ceebc56f5 /lisp/textmodes | |
parent | bea5b1ba9a248a9f4a12c3be34561ce5b69ccc94 (diff) | |
download | emacs-2fdb00aab2ff602c0470c7465a0f8241aee603b6.tar.gz |
(org-export-as-xoxo): Fix call to `indent-region'.
Diffstat (limited to 'lisp/textmodes')
-rw-r--r-- | lisp/textmodes/org.el | 2 |
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)) ))) |