|--==> "TE" == Torsten Ekedahl <teke(a)pavidus.matematik.su.se> writes:
TE> When xemacs crashes it suggest usig send-pr which apparently is
TE> no longer supported:
No, it's not, but may be again in the future. Or at least something
similar.
TE> BTW, when I executed 'report-emacs-bug' I fell into a prepared
TE> mail in mh-letter mode (no doubt because of my mail settings). Yet
TE> the *Bug-Help* window that popped up said that I should send the
TE> report using 'message-send-and-exit' which seems to be a gnus-ism.
OK, I'll fix that. Being the only MH-e user that I know :-) could you
please do me a big favour? Try out this patch and let me know if it
does the right thing for you. Thanks.
--- /usr/local/lib/xemacs/xemacs-packages/lisp/net-utils/xemacsbug.el Tue Jun 4 10:05:21
2002
+++ /home/steve/programming/XEmacs/packages/xemacs-packages/net-utils/xemacsbug.el Mon Aug
19 09:03:42 2002
@@ -202,11 +202,19 @@
(define-key (current-local-map) "\C-c\C-i" 'report-xemacs-bug-info)
(unless report-xemacs-bug-no-explanations
(with-output-to-temp-buffer "*Bug Help*"
- (if (eq mail-user-agent 'sendmail-user-agent)
- (princ (substitute-command-keys
- "Type \\[mail-send-and-exit] to send the bug report.\n"))
+ (cond
+ ((eq mail-user-agent 'sendmail-user-agent)
+ (princ (substitute-command-keys
+ "Type \\[mail-send-and-exit] to send the bug report.\n")))
+ ((eq mail-user-agent 'message-user-agent)
(princ (substitute-command-keys
"Type \\[message-send-and-exit] to send the bug report.\n")))
+ ((eq mail-user-agent 'mh-e-user-agent)
+ (princ (substitute-command-keys
+ "Type \\[mh-send-letter] to send the bug report.\n")))
+ (t
+ (princ (substitute-command-keys
+ "Type \\[mail-send-and-exit] to send the bug report.\n"))))
(princ (substitute-command-keys
"Type \\[kill-buffer] RET to cancel (don't send it).\n"))
(terpri)
--
|---<Steve Youngs>---------------<GnuPG KeyID: 10D5C9C5>---|
| XEmacs - It's not just an editor. |
| It's a way of life. |
|------------------------------------<youngs(a)xemacs.org>---|