diff options
| author | Gerd Moellmann | 1999-10-25 13:50:04 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 1999-10-25 13:50:04 +0000 |
| commit | 93baa0eab1ee525f818bb47ac95691b7e99fa9bd (patch) | |
| tree | 2b67fd2293181ab4bba8bab37e14a0d15f917212 | |
| parent | 2c8e62112a59fa48e6f43b3cb289ce8d3672afc9 (diff) | |
| download | emacs-93baa0eab1ee525f818bb47ac95691b7e99fa9bd.tar.gz emacs-93baa0eab1ee525f818bb47ac95691b7e99fa9bd.zip | |
Doc-fix.
| -rw-r--r-- | lisp/ChangeLog | 2 | ||||
| -rw-r--r-- | lisp/mail/reporter.el | 26 |
2 files changed, 18 insertions, 10 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 5dd15efef82..5be3acda013 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -13,6 +13,8 @@ | |||
| 13 | * comint.el (comint-output-filter): Make the Comint buffer current | 13 | * comint.el (comint-output-filter): Make the Comint buffer current |
| 14 | for the comint-preoutput-filter-functions. | 14 | for the comint-preoutput-filter-functions. |
| 15 | 15 | ||
| 16 | * mail/reporter.el: Doc fix. | ||
| 17 | |||
| 16 | 1999-10-24 Stephen Eglen <stephen@gnu.org> | 18 | 1999-10-24 Stephen Eglen <stephen@gnu.org> |
| 17 | 19 | ||
| 18 | * progmodes/octave-mod.el (octave-auto-indent): Remove :version so | 20 | * progmodes/octave-mod.el (octave-auto-indent): Remove :version so |
diff --git a/lisp/mail/reporter.el b/lisp/mail/reporter.el index f276e56b0fb..cd9ff426c6b 100644 --- a/lisp/mail/reporter.el +++ b/lisp/mail/reporter.el | |||
| @@ -311,19 +311,25 @@ composed.") | |||
| 311 | ;;;###autoload | 311 | ;;;###autoload |
| 312 | (defun reporter-submit-bug-report | 312 | (defun reporter-submit-bug-report |
| 313 | (address pkgname varlist &optional pre-hooks post-hooks salutation) | 313 | (address pkgname varlist &optional pre-hooks post-hooks salutation) |
| 314 | ;; Submit a bug report via mail. | 314 | "Begin submitting a bug report via email. |
| 315 | 315 | ||
| 316 | ;; ADDRESS is the email address for the package's maintainer. PKGNAME is | 316 | ADDRESS is the email address for the package's maintainer. PKGNAME is |
| 317 | ;; the name of the mode (you must explicitly concat any version numbers). | 317 | the name of the package (if you want to include version numbers, |
| 318 | ;; VARLIST is the list of variables to dump (see `reporter-dump-state' | 318 | you must put them into PKGNAME before calling this function). |
| 319 | ;; for details). Optional PRE-HOOKS and POST-HOOKS are passed to | ||
| 320 | ;; `reporter-dump-state'. Optional SALUTATION is inserted at the top of the | ||
| 321 | ;; mail buffer, and point is left after the salutation. | ||
| 322 | 319 | ||
| 323 | ;; This function will prompt for a summary if | 320 | VARLIST is the list of variables to dump (see `reporter-dump-state' |
| 324 | ;; reporter-prompt-for-summary-p is non-nil. | 321 | for details). The optional argument PRE-HOOKS and POST-HOOKS are |
| 322 | passed to `reporter-dump-state'. Optional argument SALUTATION is text | ||
| 323 | to be inserted at the top of the mail buffer; in that case, point is | ||
| 324 | left after that text. | ||
| 325 | 325 | ||
| 326 | ;; The mailer used is described in by the variable `mail-user-agent'. | 326 | This function prompts for a summary if `reporter-prompt-for-summary-p' |
| 327 | is non-nil. | ||
| 328 | |||
| 329 | This function does not send a message; it uses the given information | ||
| 330 | to initialize a a messagem, which the user can then edit and finally send | ||
| 331 | (or decline to send). The variable `mail-user-agent' controls which | ||
| 332 | mail-sending package is used for editing and sending the message." | ||
| 327 | (let ((reporter-eval-buffer (current-buffer)) | 333 | (let ((reporter-eval-buffer (current-buffer)) |
| 328 | final-resting-place | 334 | final-resting-place |
| 329 | after-sep-pos | 335 | after-sep-pos |