Update org-mime to current export functions

* /contrib/lisp/org-mime.el (org-mime-send-buffer):

This function was using `org-export-grab-title-from-buffer', which no
longer exists.
This commit is contained in:
Eric Abrahamsen 2014-05-08 22:32:01 +08:00 committed by Bastien Guerry
parent 6914619f57
commit aaae4a55ca
1 changed files with 4 additions and 2 deletions

View File

@ -269,8 +269,10 @@ export that region, otherwise export the entire body."
(defun org-mime-send-buffer (&optional fmt)
(run-hooks 'org-mime-send-buffer-hook)
(let* ((region-p (org-region-active-p))
(subject (org-export-grab-title-from-buffer))
(file (buffer-file-name (current-buffer)))
(file (buffer-file-name (current-buffer)))
(subject (if (not file) (buffer-name (buffer-base-buffer))
(file-name-sans-extension
(file-name-nondirectory file))))
(body-start (or (and region-p (region-beginning))
(save-excursion (goto-char (point-min)))))
(body-end (or (and region-p (region-end)) (point-max)))