summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpsg <>2005-10-31 01:51:48 +0000
committerpsg <>2005-10-31 01:51:48 +0000
commit2400e8e7aa5d778cd2ef484d462c794207e5d4c8 (patch)
tree62334278c1dce16ad79f68d709bc6714688d17c9
parent9172b1858ea30616ad3e28c4c6d6eff1856ba49e (diff)
debian-el:
- debian-bug.el: debian-bug-package must skip over mml directives in new mail drafts. Thanks to Luca Capello for reporting (Closes: #336466)
-rw-r--r--debian-bug.el5
1 files changed, 5 insertions, 0 deletions
diff --git a/debian-bug.el b/debian-bug.el
index e3b227f..dff5e28 100644
--- a/debian-bug.el
+++ b/debian-bug.el
@@ -255,6 +255,9 @@
;; V1.55 05Jan2005 Kevin Ryde <user42@zip.com.au>
;; - adds gnus support to debian-bug-get-bug-as-email, bringing the bug
;; messages up in a gnus group. (Closes: #288469)
+;; V1.55 05Jan2005 Peter S Galbraith <psg@debian.org>
+;; debian-bug-package: skip over mml directives in new drafts.
+;; Thanks to Luca Capello <luca@pca.it> (Closes: #336466)
;; ----------------------------------------------------------------------------
;;; Todo (Peter's list):
@@ -645,6 +648,8 @@ Reportbug may have sent an empty report!")))
(require 'sendmail)
(goto-char (mail-header-end))
(forward-line 1)
+ (if (looking-at "^<#secure") ;Skip over mml directives
+ (forward-line 1))
(message "Getting package information from system...")
(debian-bug-prefill-report package severity)
(message "Getting package information from system...done")