+2013-06-12 Grégoire Jadi <daimrod@gmail.com>
+
+ * mail/reporter.el (reporter-submit-bug-report):
+ Handle missing package-name. (Bug#14600)
+
2013-06-12 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
* textmodes/reftex-cite.el (reftex-cite-regexp-hist)
(mail-position-on-field "to")
(insert address)
;; insert problem summary if available
- (if (and reporter-prompt-for-summary-p problem pkgname)
- (progn
- (mail-position-on-field "subject")
- (insert pkgname "; " problem)))
+ (when (and reporter-prompt-for-summary-p problem)
+ (mail-position-on-field "subject")
+ (if pkgname (insert pkgname "; "))
+ (insert problem))
;; move point to the body of the message
(mail-text)
(forward-line 1)