[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Bugs in "Send Bug Report" command
From: |
Thien-Thi Nguyen |
Subject: |
Re: Bugs in "Send Bug Report" command |
Date: |
20 Mar 2002 21:14:45 -0500 |
"Järneström Jonas" <erajonj@ki.ericsson.se> writes:
1) Why is the paragraph above included in the mail to the maintainers?
Its not directed to them. Browsing gnu.emacs.bug newsgroup, this
paragraph is visible in every other bug report, and that looks kind
of silly and waste bandwidth. I suggest that the message is
redirected to a help buffer instead.
this has been added to `report-emacs-bug-hook':
;; Unclutter
(mail-text)
(let ((p (point)))
(re-search-forward (concat "^In " (emacs-version)))
(delete-region p (match-beginning 0)))
(re-search-forward "Please describe.+\n.+precise symptoms.+bug:\n*"
(point-max) t)
(replace-match "Symptoms:\n")))
the other gripe can be addressed by `mail-self-blind', i believe.
thi