annotate lisp/mail/emacsbug.el @ 16572:6a597563d83e

(report-emacs-bug): New argument recent-keys read before bug subject to capture more relevant recent input.
author Erik Naggum <erik@naggum.no>
date Wed, 13 Nov 1996 16:33:28 +0000
parents 4a742f2d5328
children a04c1653a37c
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
662
8a533acedb77 *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 474
diff changeset
1 ;;; emacsbug.el --- command to report Emacs bugs to appropriate mailing list.
8a533acedb77 *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 474
diff changeset
2
7300
cc7cd83ccf3f Update copyright.
Karl Heuer <kwzh@gnu.org>
parents: 6971
diff changeset
3 ;; Copyright (C) 1985, 1994 Free Software Foundation, Inc.
845
213978acbc1e entered into RCS
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 807
diff changeset
4
807
4f28bd14272c *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 794
diff changeset
5 ;; Author: K. Shane Hartman
794
2598c08c91c2 *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 662
diff changeset
6 ;; Maintainer: FSF
2247
2c7997f249eb Add or correct keywords
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 845
diff changeset
7 ;; Keywords: maint
794
2598c08c91c2 *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 662
diff changeset
8
36
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
9 ;; Not fully installed because it can work only on Internet hosts.
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
10 ;; This file is part of GNU Emacs.
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
11
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
12 ;; GNU Emacs is free software; you can redistribute it and/or modify
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
13 ;; it under the terms of the GNU General Public License as published by
807
4f28bd14272c *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 794
diff changeset
14 ;; the Free Software Foundation; either version 2, or (at your option)
36
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
15 ;; any later version.
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
16
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
17 ;; GNU Emacs is distributed in the hope that it will be useful,
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
20 ;; GNU General Public License for more details.
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
21
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
22 ;; You should have received a copy of the GNU General Public License
14169
83f275dcd93a Update FSF's address.
Erik Naggum <erik@naggum.no>
parents: 13816
diff changeset
23 ;; along with GNU Emacs; see the file COPYING. If not, write to the
83f275dcd93a Update FSF's address.
Erik Naggum <erik@naggum.no>
parents: 13816
diff changeset
24 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
83f275dcd93a Update FSF's address.
Erik Naggum <erik@naggum.no>
parents: 13816
diff changeset
25 ;; Boston, MA 02111-1307, USA.
36
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
26
2307
10e417efb12a Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2247
diff changeset
27 ;;; Commentary:
10e417efb12a Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2247
diff changeset
28
10e417efb12a Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2247
diff changeset
29 ;; `M-x report-emacs-bug ' starts an email note to the Emacs maintainers
10e417efb12a Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2247
diff changeset
30 ;; describing a problem. Here's how it's done...
10e417efb12a Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2247
diff changeset
31
794
2598c08c91c2 *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 662
diff changeset
32 ;;; Code:
36
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
33
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
34 ;; >> This should be an address which is accessible to your machine,
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
35 ;; >> otherwise you can't use this file. It will only work on the
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
36 ;; >> internet with this address.
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
37
6971
90859715093d (report-emacs-bug): Insert at separator, not at end.
Karl Heuer <kwzh@gnu.org>
parents: 2348
diff changeset
38 (require 'sendmail)
90859715093d (report-emacs-bug): Insert at separator, not at end.
Karl Heuer <kwzh@gnu.org>
parents: 2348
diff changeset
39
36
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
40 (defvar bug-gnu-emacs "bug-gnu-emacs@prep.ai.mit.edu"
14815
4a742f2d5328 (report-emacs-bug): Use a different address for pretest versions.
Richard M. Stallman <rms@gnu.org>
parents: 14280
diff changeset
41 "Address of mailing list for GNU Emacs bugs.")
4a742f2d5328 (report-emacs-bug): Use a different address for pretest versions.
Richard M. Stallman <rms@gnu.org>
parents: 14280
diff changeset
42
4a742f2d5328 (report-emacs-bug): Use a different address for pretest versions.
Richard M. Stallman <rms@gnu.org>
parents: 14280
diff changeset
43 (defvar report-emacs-bug-pretest-address "emacs-pretest-bug@gnu.ai.mit.edu"
4a742f2d5328 (report-emacs-bug): Use a different address for pretest versions.
Richard M. Stallman <rms@gnu.org>
parents: 14280
diff changeset
44 "Address of mailing list for GNU Emacs pretest bugs.")
36
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
45
8130
c84ecb24316c (report-emacs-bug-hook): Error if user has added no text.
Richard M. Stallman <rms@gnu.org>
parents: 7300
diff changeset
46 (defvar report-emacs-bug-orig-text nil
c84ecb24316c (report-emacs-bug-hook): Error if user has added no text.
Richard M. Stallman <rms@gnu.org>
parents: 7300
diff changeset
47 "The automatically-created initial text of bug report.")
c84ecb24316c (report-emacs-bug-hook): Error if user has added no text.
Richard M. Stallman <rms@gnu.org>
parents: 7300
diff changeset
48
474
c3bbd755b7da *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 201
diff changeset
49 ;;;###autoload
16572
6a597563d83e (report-emacs-bug): New argument recent-keys read before bug subject
Erik Naggum <erik@naggum.no>
parents: 14815
diff changeset
50 (defun report-emacs-bug (recent-keys topic)
474
c3bbd755b7da *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 201
diff changeset
51 "Report a bug in GNU Emacs.
36
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
52 Prompts for bug subject. Leaves you in a mail buffer."
16572
6a597563d83e (report-emacs-bug): New argument recent-keys read before bug subject
Erik Naggum <erik@naggum.no>
parents: 14815
diff changeset
53 (interactive (list (recent-keys)
6a597563d83e (report-emacs-bug): New argument recent-keys read before bug subject
Erik Naggum <erik@naggum.no>
parents: 14815
diff changeset
54 (read-string "Bug Subject: ")))
14815
4a742f2d5328 (report-emacs-bug): Use a different address for pretest versions.
Richard M. Stallman <rms@gnu.org>
parents: 14280
diff changeset
55 (if (mail nil
4a742f2d5328 (report-emacs-bug): Use a different address for pretest versions.
Richard M. Stallman <rms@gnu.org>
parents: 14280
diff changeset
56 (if (string-match "\\..*\\..*\\." emacs-version)
4a742f2d5328 (report-emacs-bug): Use a different address for pretest versions.
Richard M. Stallman <rms@gnu.org>
parents: 14280
diff changeset
57 ;; If there are four numbers in emacs-version,
4a742f2d5328 (report-emacs-bug): Use a different address for pretest versions.
Richard M. Stallman <rms@gnu.org>
parents: 14280
diff changeset
58 ;; this is a pretest version.
4a742f2d5328 (report-emacs-bug): Use a different address for pretest versions.
Richard M. Stallman <rms@gnu.org>
parents: 14280
diff changeset
59 report-emacs-bug-pretest-address
4a742f2d5328 (report-emacs-bug): Use a different address for pretest versions.
Richard M. Stallman <rms@gnu.org>
parents: 14280
diff changeset
60 bug-gnu-emacs)
4a742f2d5328 (report-emacs-bug): Use a different address for pretest versions.
Richard M. Stallman <rms@gnu.org>
parents: 14280
diff changeset
61 topic)
13795
7665c2422011 (report-emacs-bug): If `mail' asks for confirmation
Karl Heuer <kwzh@gnu.org>
parents: 13251
diff changeset
62 (let (user-point)
7665c2422011 (report-emacs-bug): If `mail' asks for confirmation
Karl Heuer <kwzh@gnu.org>
parents: 13251
diff changeset
63 ;; The rest of this does not execute
7665c2422011 (report-emacs-bug): If `mail' asks for confirmation
Karl Heuer <kwzh@gnu.org>
parents: 13251
diff changeset
64 ;; if the user was asked to confirm and said no.
7665c2422011 (report-emacs-bug): If `mail' asks for confirmation
Karl Heuer <kwzh@gnu.org>
parents: 13251
diff changeset
65 (goto-char (point-min))
7665c2422011 (report-emacs-bug): If `mail' asks for confirmation
Karl Heuer <kwzh@gnu.org>
parents: 13251
diff changeset
66 (re-search-forward (concat "^" (regexp-quote mail-header-separator) "\n"))
7665c2422011 (report-emacs-bug): If `mail' asks for confirmation
Karl Heuer <kwzh@gnu.org>
parents: 13251
diff changeset
67 (insert "In " (emacs-version) "\n")
7665c2422011 (report-emacs-bug): If `mail' asks for confirmation
Karl Heuer <kwzh@gnu.org>
parents: 13251
diff changeset
68 (if (and system-configuration-options
7665c2422011 (report-emacs-bug): If `mail' asks for confirmation
Karl Heuer <kwzh@gnu.org>
parents: 13251
diff changeset
69 (not (equal system-configuration-options "")))
7665c2422011 (report-emacs-bug): If `mail' asks for confirmation
Karl Heuer <kwzh@gnu.org>
parents: 13251
diff changeset
70 (insert "configured using `configure "
7665c2422011 (report-emacs-bug): If `mail' asks for confirmation
Karl Heuer <kwzh@gnu.org>
parents: 13251
diff changeset
71 system-configuration-options "'\n"))
7665c2422011 (report-emacs-bug): If `mail' asks for confirmation
Karl Heuer <kwzh@gnu.org>
parents: 13251
diff changeset
72 (insert "\n")
7665c2422011 (report-emacs-bug): If `mail' asks for confirmation
Karl Heuer <kwzh@gnu.org>
parents: 13251
diff changeset
73 (insert "Please describe exactly what actions triggered the bug\n"
7665c2422011 (report-emacs-bug): If `mail' asks for confirmation
Karl Heuer <kwzh@gnu.org>
parents: 13251
diff changeset
74 "and the precise symptoms of the bug:\n\n")
7665c2422011 (report-emacs-bug): If `mail' asks for confirmation
Karl Heuer <kwzh@gnu.org>
parents: 13251
diff changeset
75 (setq user-point (point))
7665c2422011 (report-emacs-bug): If `mail' asks for confirmation
Karl Heuer <kwzh@gnu.org>
parents: 13251
diff changeset
76 (insert "\n\n\n"
7665c2422011 (report-emacs-bug): If `mail' asks for confirmation
Karl Heuer <kwzh@gnu.org>
parents: 13251
diff changeset
77 "Recent input:\n")
7665c2422011 (report-emacs-bug): If `mail' asks for confirmation
Karl Heuer <kwzh@gnu.org>
parents: 13251
diff changeset
78 (let ((before-keys (point)))
14280
0134b04bc92d (report-emacs-bug): Insert newlines only in the inserted key descriptions.
Erik Naggum <erik@naggum.no>
parents: 14169
diff changeset
79 (insert (mapconcat (lambda (key)
0134b04bc92d (report-emacs-bug): Insert newlines only in the inserted key descriptions.
Erik Naggum <erik@naggum.no>
parents: 14169
diff changeset
80 (if (or (integerp key)
0134b04bc92d (report-emacs-bug): Insert newlines only in the inserted key descriptions.
Erik Naggum <erik@naggum.no>
parents: 14169
diff changeset
81 (symbolp key)
0134b04bc92d (report-emacs-bug): Insert newlines only in the inserted key descriptions.
Erik Naggum <erik@naggum.no>
parents: 14169
diff changeset
82 (listp key))
0134b04bc92d (report-emacs-bug): Insert newlines only in the inserted key descriptions.
Erik Naggum <erik@naggum.no>
parents: 14169
diff changeset
83 (single-key-description key)
0134b04bc92d (report-emacs-bug): Insert newlines only in the inserted key descriptions.
Erik Naggum <erik@naggum.no>
parents: 14169
diff changeset
84 (prin1-to-string key nil)))
16572
6a597563d83e (report-emacs-bug): New argument recent-keys read before bug subject
Erik Naggum <erik@naggum.no>
parents: 14815
diff changeset
85 recent-keys
13795
7665c2422011 (report-emacs-bug): If `mail' asks for confirmation
Karl Heuer <kwzh@gnu.org>
parents: 13251
diff changeset
86 " "))
14280
0134b04bc92d (report-emacs-bug): Insert newlines only in the inserted key descriptions.
Erik Naggum <erik@naggum.no>
parents: 14169
diff changeset
87 (save-restriction
0134b04bc92d (report-emacs-bug): Insert newlines only in the inserted key descriptions.
Erik Naggum <erik@naggum.no>
parents: 14169
diff changeset
88 (narrow-to-region before-keys (point))
0134b04bc92d (report-emacs-bug): Insert newlines only in the inserted key descriptions.
Erik Naggum <erik@naggum.no>
parents: 14169
diff changeset
89 (goto-char before-keys)
0134b04bc92d (report-emacs-bug): Insert newlines only in the inserted key descriptions.
Erik Naggum <erik@naggum.no>
parents: 14169
diff changeset
90 (while (progn (move-to-column 50) (not (eobp)))
0134b04bc92d (report-emacs-bug): Insert newlines only in the inserted key descriptions.
Erik Naggum <erik@naggum.no>
parents: 14169
diff changeset
91 (search-forward " " nil t)
0134b04bc92d (report-emacs-bug): Insert newlines only in the inserted key descriptions.
Erik Naggum <erik@naggum.no>
parents: 14169
diff changeset
92 (insert "\n"))))
13816
777c7668b8b0 (report-emacs-bug): Don't die if *Messages* buf is gone.
Karl Heuer <kwzh@gnu.org>
parents: 13795
diff changeset
93 (let ((message-buf (get-buffer "*Messages*")))
777c7668b8b0 (report-emacs-bug): Don't die if *Messages* buf is gone.
Karl Heuer <kwzh@gnu.org>
parents: 13795
diff changeset
94 (if message-buf
777c7668b8b0 (report-emacs-bug): Don't die if *Messages* buf is gone.
Karl Heuer <kwzh@gnu.org>
parents: 13795
diff changeset
95 (progn
777c7668b8b0 (report-emacs-bug): Don't die if *Messages* buf is gone.
Karl Heuer <kwzh@gnu.org>
parents: 13795
diff changeset
96 (insert "\n\nRecent messages:\n")
777c7668b8b0 (report-emacs-bug): Don't die if *Messages* buf is gone.
Karl Heuer <kwzh@gnu.org>
parents: 13795
diff changeset
97 (insert-buffer-substring message-buf
777c7668b8b0 (report-emacs-bug): Don't die if *Messages* buf is gone.
Karl Heuer <kwzh@gnu.org>
parents: 13795
diff changeset
98 (save-excursion
777c7668b8b0 (report-emacs-bug): Don't die if *Messages* buf is gone.
Karl Heuer <kwzh@gnu.org>
parents: 13795
diff changeset
99 (set-buffer message-buf)
777c7668b8b0 (report-emacs-bug): Don't die if *Messages* buf is gone.
Karl Heuer <kwzh@gnu.org>
parents: 13795
diff changeset
100 (goto-char (point-max))
777c7668b8b0 (report-emacs-bug): Don't die if *Messages* buf is gone.
Karl Heuer <kwzh@gnu.org>
parents: 13795
diff changeset
101 (forward-line -10)
777c7668b8b0 (report-emacs-bug): Don't die if *Messages* buf is gone.
Karl Heuer <kwzh@gnu.org>
parents: 13795
diff changeset
102 (point))
777c7668b8b0 (report-emacs-bug): Don't die if *Messages* buf is gone.
Karl Heuer <kwzh@gnu.org>
parents: 13795
diff changeset
103 (save-excursion
777c7668b8b0 (report-emacs-bug): Don't die if *Messages* buf is gone.
Karl Heuer <kwzh@gnu.org>
parents: 13795
diff changeset
104 (set-buffer message-buf)
777c7668b8b0 (report-emacs-bug): Don't die if *Messages* buf is gone.
Karl Heuer <kwzh@gnu.org>
parents: 13795
diff changeset
105 (point-max))))))
13795
7665c2422011 (report-emacs-bug): If `mail' asks for confirmation
Karl Heuer <kwzh@gnu.org>
parents: 13251
diff changeset
106 ;; This is so the user has to type something
7665c2422011 (report-emacs-bug): If `mail' asks for confirmation
Karl Heuer <kwzh@gnu.org>
parents: 13251
diff changeset
107 ;; in order to send easily.
7665c2422011 (report-emacs-bug): If `mail' asks for confirmation
Karl Heuer <kwzh@gnu.org>
parents: 13251
diff changeset
108 (use-local-map (nconc (make-sparse-keymap) (current-local-map)))
7665c2422011 (report-emacs-bug): If `mail' asks for confirmation
Karl Heuer <kwzh@gnu.org>
parents: 13251
diff changeset
109 (define-key (current-local-map) "\C-c\C-i" 'report-emacs-bug-info)
7665c2422011 (report-emacs-bug): If `mail' asks for confirmation
Karl Heuer <kwzh@gnu.org>
parents: 13251
diff changeset
110 (with-output-to-temp-buffer "*Bug Help*"
7665c2422011 (report-emacs-bug): If `mail' asks for confirmation
Karl Heuer <kwzh@gnu.org>
parents: 13251
diff changeset
111 (princ (substitute-command-keys
7665c2422011 (report-emacs-bug): If `mail' asks for confirmation
Karl Heuer <kwzh@gnu.org>
parents: 13251
diff changeset
112 "Type \\[mail-send-and-exit] to send the bug report.\n"))
7665c2422011 (report-emacs-bug): If `mail' asks for confirmation
Karl Heuer <kwzh@gnu.org>
parents: 13251
diff changeset
113 (princ (substitute-command-keys
7665c2422011 (report-emacs-bug): If `mail' asks for confirmation
Karl Heuer <kwzh@gnu.org>
parents: 13251
diff changeset
114 "Type \\[kill-buffer] RET to cancel (don't send it).\n"))
7665c2422011 (report-emacs-bug): If `mail' asks for confirmation
Karl Heuer <kwzh@gnu.org>
parents: 13251
diff changeset
115 (terpri)
7665c2422011 (report-emacs-bug): If `mail' asks for confirmation
Karl Heuer <kwzh@gnu.org>
parents: 13251
diff changeset
116 (princ (substitute-command-keys
7665c2422011 (report-emacs-bug): If `mail' asks for confirmation
Karl Heuer <kwzh@gnu.org>
parents: 13251
diff changeset
117 "Type \\[report-emacs-bug-info] to visit in Info the Emacs Manual section
12155
63887def546f (report-emacs-bug-info): New command.
Karl Heuer <kwzh@gnu.org>
parents: 8921
diff changeset
118 about when and how to write a bug report,
63887def546f (report-emacs-bug-info): New command.
Karl Heuer <kwzh@gnu.org>
parents: 8921
diff changeset
119 and what information to supply so that the bug can be fixed.
63887def546f (report-emacs-bug-info): New command.
Karl Heuer <kwzh@gnu.org>
parents: 8921
diff changeset
120 Type SPC to scroll through this section and its subsections.")))
13795
7665c2422011 (report-emacs-bug): If `mail' asks for confirmation
Karl Heuer <kwzh@gnu.org>
parents: 13251
diff changeset
121 ;; Make it less likely people will send empty messages.
7665c2422011 (report-emacs-bug): If `mail' asks for confirmation
Karl Heuer <kwzh@gnu.org>
parents: 13251
diff changeset
122 (make-local-variable 'mail-send-hook)
7665c2422011 (report-emacs-bug): If `mail' asks for confirmation
Karl Heuer <kwzh@gnu.org>
parents: 13251
diff changeset
123 (add-hook 'mail-send-hook 'report-emacs-bug-hook)
7665c2422011 (report-emacs-bug): If `mail' asks for confirmation
Karl Heuer <kwzh@gnu.org>
parents: 13251
diff changeset
124 (save-excursion
7665c2422011 (report-emacs-bug): If `mail' asks for confirmation
Karl Heuer <kwzh@gnu.org>
parents: 13251
diff changeset
125 (goto-char (point-max))
7665c2422011 (report-emacs-bug): If `mail' asks for confirmation
Karl Heuer <kwzh@gnu.org>
parents: 13251
diff changeset
126 (skip-chars-backward " \t\n")
7665c2422011 (report-emacs-bug): If `mail' asks for confirmation
Karl Heuer <kwzh@gnu.org>
parents: 13251
diff changeset
127 (make-local-variable 'report-emacs-bug-orig-text)
7665c2422011 (report-emacs-bug): If `mail' asks for confirmation
Karl Heuer <kwzh@gnu.org>
parents: 13251
diff changeset
128 (setq report-emacs-bug-orig-text (buffer-substring (point-min) (point))))
7665c2422011 (report-emacs-bug): If `mail' asks for confirmation
Karl Heuer <kwzh@gnu.org>
parents: 13251
diff changeset
129 (goto-char user-point))))
8130
c84ecb24316c (report-emacs-bug-hook): Error if user has added no text.
Richard M. Stallman <rms@gnu.org>
parents: 7300
diff changeset
130
12155
63887def546f (report-emacs-bug-info): New command.
Karl Heuer <kwzh@gnu.org>
parents: 8921
diff changeset
131 (defun report-emacs-bug-info ()
63887def546f (report-emacs-bug-info): New command.
Karl Heuer <kwzh@gnu.org>
parents: 8921
diff changeset
132 "Go to the Info node on reporting Emacs bugs."
63887def546f (report-emacs-bug-info): New command.
Karl Heuer <kwzh@gnu.org>
parents: 8921
diff changeset
133 (interactive)
63887def546f (report-emacs-bug-info): New command.
Karl Heuer <kwzh@gnu.org>
parents: 8921
diff changeset
134 (info)
63887def546f (report-emacs-bug-info): New command.
Karl Heuer <kwzh@gnu.org>
parents: 8921
diff changeset
135 (Info-directory)
63887def546f (report-emacs-bug-info): New command.
Karl Heuer <kwzh@gnu.org>
parents: 8921
diff changeset
136 (Info-menu "emacs")
63887def546f (report-emacs-bug-info): New command.
Karl Heuer <kwzh@gnu.org>
parents: 8921
diff changeset
137 (Info-goto-node "Bugs"))
63887def546f (report-emacs-bug-info): New command.
Karl Heuer <kwzh@gnu.org>
parents: 8921
diff changeset
138
8130
c84ecb24316c (report-emacs-bug-hook): Error if user has added no text.
Richard M. Stallman <rms@gnu.org>
parents: 7300
diff changeset
139 (defun report-emacs-bug-hook ()
c84ecb24316c (report-emacs-bug-hook): Error if user has added no text.
Richard M. Stallman <rms@gnu.org>
parents: 7300
diff changeset
140 (save-excursion
c84ecb24316c (report-emacs-bug-hook): Error if user has added no text.
Richard M. Stallman <rms@gnu.org>
parents: 7300
diff changeset
141 (goto-char (point-max))
c84ecb24316c (report-emacs-bug-hook): Error if user has added no text.
Richard M. Stallman <rms@gnu.org>
parents: 7300
diff changeset
142 (skip-chars-backward " \t\n")
c84ecb24316c (report-emacs-bug-hook): Error if user has added no text.
Richard M. Stallman <rms@gnu.org>
parents: 7300
diff changeset
143 (if (and (= (- (point) (point-min))
c84ecb24316c (report-emacs-bug-hook): Error if user has added no text.
Richard M. Stallman <rms@gnu.org>
parents: 7300
diff changeset
144 (length report-emacs-bug-orig-text))
c84ecb24316c (report-emacs-bug-hook): Error if user has added no text.
Richard M. Stallman <rms@gnu.org>
parents: 7300
diff changeset
145 (equal (buffer-substring (point-min) (point))
c84ecb24316c (report-emacs-bug-hook): Error if user has added no text.
Richard M. Stallman <rms@gnu.org>
parents: 7300
diff changeset
146 report-emacs-bug-orig-text))
c84ecb24316c (report-emacs-bug-hook): Error if user has added no text.
Richard M. Stallman <rms@gnu.org>
parents: 7300
diff changeset
147 (error "No text entered in bug report"))))
36
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
148
2348
581cda633215 Added a (provide 'emacsbug); lisp-mnt.el needs this.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2307
diff changeset
149 (provide 'emacsbug)
581cda633215 Added a (provide 'emacsbug); lisp-mnt.el needs this.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2307
diff changeset
150
662
8a533acedb77 *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 474
diff changeset
151 ;;; emacsbug.el ends here