0
0
Fork 1
mirror of https://git.savannah.gnu.org/git/emacs/org-mode.git synced 2024-09-29 19:37:52 +00:00

org-mime.el: Fix org-mime-htmlize

* org-mime.el (org-mime-htmlize): Make argument optional.
This commit is contained in:
Matt Price 2015-07-18 16:14:33 -04:00 committed by Rasmus
parent 985420eceb
commit b9a9f5aa22

View file

@ -194,10 +194,10 @@ and images in a multipart/related part."
str)
html-images)))
(defun org-mime-htmlize (arg)
(defun org-mime-htmlize (&optional arg)
"Export a portion of an email body composed using `mml-mode' to
html using `org-mode'. If called with an active region only
export that region, otherwise export the entire body."
html using `org-mode'. If called with an active region only
export that region, otherwise export the entire body."
(interactive "P")
(require 'ox-org)
(require 'ox-html)