From 0c7f3726fae7ab81ac321838b9232de885dfd5f4 Mon Sep 17 00:00:00 2001 From: Bastien Guerry Date: Fri, 8 Jul 2011 11:56:24 +0200 Subject: [PATCH] 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. --- lisp/org-ascii.el | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lisp/org-ascii.el b/lisp/org-ascii.el index ecea057c4..b58d64461 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