summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Guerry <bzg@altern.org>2011-07-08 11:56:24 +0200
committerBastien Guerry <bzg@altern.org>2011-07-08 11:56:24 +0200
commit0c7f3726fae7ab81ac321838b9232de885dfd5f4 (patch)
treeb5851a480c9b17bbf4c655f2bc8d2a26cd2162d9
parent0a0fb300f3bfc6b8863e55faf636e4e82a464a06 (diff)
downloadorg-mode-0c7f3726fae7ab81ac321838b9232de885dfd5f4.tar.gz
org-ascii.el: fix `org-export-as-utf8'.
* org-ascii.el (org-export-as-utf8): fix call to `org-called-interactively-p': it requires an argument. Also fix the docstring.
-rw-r--r--lisp/org-ascii.el5
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/org-ascii.el b/lisp/org-ascii.el
index ecea057..b58d644 100644
--- a/lisp/org-ascii.el
+++ b/lisp/org-ascii.el
@@ -108,9 +108,10 @@ utf8 Use all UTF-8 characters")
;;;###autoload
(defun org-export-as-utf8 (&rest args)
- "Like `org-export-as-ascii', use use encoding for special symbols."
+ "Like `org-export-as-ascii', use encoding for special symbols."
(interactive)
- (org-export-as-encoding 'org-export-as-ascii (org-called-interactively-p)
+ (org-export-as-encoding 'org-export-as-ascii
+ (org-called-interactively-p 'any)
'utf8 args))
;;;###autoload