1
0
mirror of https://git.savannah.gnu.org/git/emacs/org-mode.git synced 2024-11-29 07:58:21 +00:00

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.
This commit is contained in:
Bastien Guerry 2011-07-08 11:56:24 +02:00
parent 0a0fb300f3
commit 0c7f3726fa

View File

@ -108,9 +108,10 @@ utf8 Use all UTF-8 characters")
;;;###autoload ;;;###autoload
(defun org-export-as-utf8 (&rest args) (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) (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)) 'utf8 args))
;;;###autoload ;;;###autoload