From: Andreas Rottmann Subject: [PATCH] Fixes for the Gnus integration - `org-gnus-store-link': When the article buffer starts with "From ", ignore the first line. This is necessary at least on Gnus v5.13, as shipped with emacs23 (CVS 2009-06-18). --- lisp/org-gnus.el | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/lisp/org-gnus.el b/lisp/org-gnus.el index 41b1be7..4cc5adb 100644 --- a/lisp/org-gnus.el +++ b/lisp/org-gnus.el @@ -128,6 +128,8 @@ If `org-store-link' was called with a prefix arg the meaning of (header (with-current-buffer gnus-article-buffer (gnus-summary-toggle-header 1) (goto-char (point-min)) + (when (looking-at "From ") + (next-line)) (mail-header-extract-no-properties))) (from (mail-header 'from header)) (message-id (org-remove-angle-brackets -- tg: (0795e42..) t/gnus-fixes (depends on: master)