Gnus development mailing list
 help / color / mirror / Atom feed
* [PATCH] message-goto-body after <#secure
@ 2010-11-23 20:55 Łukasz Stelmach
  2010-11-24 17:28 ` Julien Danjou
  2010-11-24 20:53 ` Lars Magne Ingebrigtsen
  0 siblings, 2 replies; 6+ messages in thread
From: Łukasz Stelmach @ 2010-11-23 20:55 UTC (permalink / raw)
  To: ding

Hi.

The following patch makes message-goto-body function put cursor after
possible "<#secure" tag. This hits two birds with one stone: pressing
C-c C-b moves me where I can start typing and any citations that get
inserted into a new message buffer when replying (I have not tested
resending or forwarding yet but I suppose it works the same way) leave
the tag at the very begining of a message.

Why I wrote this? I've set up mml-secure-message-sign-pgpmime as a part
of message-setup-hook. I prefere this to putting it in message-send-hook
because I can decide whether to sign a message or not. And it works well
for a new message. However, it fails for replies because just before
citations are inserted message-goto-body sets point *brefore*
the <#secure tag that is there since message-setup-hook gets fired
before citations.

--8<---------------cut here---------------start------------->8---
diff --git a/lisp/message.el b/lisp/message.el
index bff11b2..b3660c6 100644
--- a/lisp/message.el
+++ b/lisp/message.el
@@ -3099,7 +3099,8 @@ M-RET    `message-newline-and-reformat' (break the line and reformat)."
     (expand-abbrev))
   (goto-char (point-min))
   (or (search-forward (concat "\n" mail-header-separator "\n") nil t)
-      (search-forward-regexp "[^:]+:\\([^\n]\\|\n[ \t]\\)+\n\n" nil t)))
+      (search-forward-regexp "[^:]+:\\([^\n]\\|\n[ \t]\\)+\n\n" nil t))
+  (while (looking-at "^<#secure") (forward-line 1)))
 
 (defun message-in-body-p ()
   "Return t if point is in the message body."
--8<---------------cut here---------------end--------------->8---

-- 
Miłego dnia,
Łukasz Stelmach




^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2010-11-24 23:19 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-11-23 20:55 [PATCH] message-goto-body after <#secure Łukasz Stelmach
2010-11-24 17:28 ` Julien Danjou
2010-11-24 20:53 ` Lars Magne Ingebrigtsen
2010-11-24 21:20   ` Julien Danjou
2010-11-24 23:16     ` Łukasz Stelmach
2010-11-24 23:19       ` Lars Magne Ingebrigtsen

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).