aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Kangas2019-05-26 18:08:01 +0200
committerStefan Monnier2019-05-28 08:12:17 -0400
commitdd5ea0a068ce72277b9e06427063bf059ed1d03c (patch)
tree00df7f7f705f6e10105fc45650e39eae24223775
parentc617b4bf1e50bf33f0016bbcd5f502cc88150f26 (diff)
downloademacs-dd5ea0a068ce72277b9e06427063bf059ed1d03c.tar.gz
emacs-dd5ea0a068ce72277b9e06427063bf059ed1d03c.zip
Cleanup of TODO to prefer report-emacs-bug
* etc/TODO: Remove already completed removal of `report-calc-bug'. * lisp/calc/calc.el: Remove any mention of `report-calc-bug'. * lisp/epg-config.el: Redefine `epg-bug-report-address' as obsolete variable alias for `report-emacs-bug-address'. * lisp/expand.el: Remove any mention of `expand-submit-report'. * lisp/obsolete/fast-lock.el: Remove commented out code for `fast-lock-submit-bug-report'.
-rw-r--r--etc/TODO1
-rw-r--r--lisp/calc/calc.el5
-rw-r--r--lisp/epg-config.el4
-rw-r--r--lisp/expand.el3
-rw-r--r--lisp/obsolete/fast-lock.el17
5 files changed, 4 insertions, 26 deletions
diff --git a/etc/TODO b/etc/TODO
index dc594a007ed..fe2e583a380 100644
--- a/etc/TODO
+++ b/etc/TODO
@@ -202,7 +202,6 @@ https://lists.gnu.org/r/emacs-devel/2007-04/msg00684.html
202Change them to use report-emacs-bug. 202Change them to use report-emacs-bug.
203*** Related functions: 203*** Related functions:
204**** gnus-bug 204**** gnus-bug
205**** report-calc-bug
206**** org-submit-bug-report 205**** org-submit-bug-report
207**** lm-report-bug 206**** lm-report-bug
208**** tramp-bug 207**** tramp-bug
diff --git a/lisp/calc/calc.el b/lisp/calc/calc.el
index 35f13f9656a..1496a741abd 100644
--- a/lisp/calc/calc.el
+++ b/lisp/calc/calc.el
@@ -37,13 +37,12 @@
37;; work for the foreseeable future. 37;; work for the foreseeable future.
38;; 38;;
39;; Bug reports and suggestions are always welcome! (Type M-x 39;; Bug reports and suggestions are always welcome! (Type M-x
40;; report-calc-bug to send them). 40;; report-emacs-bug to send them).
41 41
42;; All functions, macros, and Lisp variables defined here begin with one 42;; All functions, macros, and Lisp variables defined here begin with one
43;; of the prefixes "math", "Math", or "calc", with the exceptions of 43;; of the prefixes "math", "Math", or "calc", with the exceptions of
44;; "full-calc", "full-calc-keypad", "another-calc", "quick-calc", 44;; "full-calc", "full-calc-keypad", "another-calc", "quick-calc",
45;; "report-calc-bug", and "defmath". User-accessible variables begin 45;; and "defmath". User-accessible variables begin with "var-".
46;; with "var-".
47 46
48;;; TODO: 47;;; TODO:
49 48
diff --git a/lisp/epg-config.el b/lisp/epg-config.el
index 4502f90874f..bb323e54fa9 100644
--- a/lisp/epg-config.el
+++ b/lisp/epg-config.el
@@ -31,8 +31,8 @@
31(defconst epg-version-number "1.0.0" 31(defconst epg-version-number "1.0.0"
32 "Version number of this package.") 32 "Version number of this package.")
33 33
34(defconst epg-bug-report-address "ueno@unixuser.org" 34(define-obsolete-variable-alias 'epg-bug-report-address
35 "Report bugs to this address.") 35 'report-emacs-bug-address "27.1")
36 36
37(defgroup epg () 37(defgroup epg ()
38 "Interface to the GNU Privacy Guard (GnuPG)." 38 "Interface to the GNU Privacy Guard (GnuPG)."
diff --git a/lisp/expand.el b/lisp/expand.el
index 0c4d343090c..da76effc260 100644
--- a/lisp/expand.el
+++ b/lisp/expand.el
@@ -66,9 +66,6 @@
66;; Jerome Santini <santini@chambord.univ-orleans.fr>, 66;; Jerome Santini <santini@chambord.univ-orleans.fr>,
67;; Jari Aalto <jaalto@tre.tele.nokia.fi>. 67;; Jari Aalto <jaalto@tre.tele.nokia.fi>.
68;; 68;;
69;; Please send me a word to give me your feeling about this feature or
70;; to explain me how you use it (your expansions table for example) using
71;; the function expand-submit-report.
72;;; Code: 69;;; Code:
73 70
74;;; Constants: 71;;; Constants:
diff --git a/lisp/obsolete/fast-lock.el b/lisp/obsolete/fast-lock.el
index b8d58fa13ca..9ae6d91bde8 100644
--- a/lisp/obsolete/fast-lock.el
+++ b/lisp/obsolete/fast-lock.el
@@ -214,23 +214,6 @@
214 (setq faces (cdr faces)))) 214 (setq faces (cdr faces))))
215 faces))))) 215 faces)))))
216 216
217;;(defun fast-lock-submit-bug-report ()
218;; "Submit via mail a bug report on fast-lock.el."
219;; (interactive)
220;; (let ((reporter-prompt-for-summary-p t))
221;; (reporter-submit-bug-report "simon@gnu.org" "fast-lock 3.14"
222;; '(fast-lock-cache-directories fast-lock-minimum-size
223;; fast-lock-save-others fast-lock-save-events fast-lock-save-faces
224;; fast-lock-verbose)
225;; nil nil
226;; (concat "Hi Si.,
227;;
228;;I want to report a bug. I've read the `Bugs' section of `Info' on Emacs, so I
229;;know how to make a clear and unambiguous report. To reproduce the bug:
230;;
231;;Start a fresh editor via `" invocation-name " -no-init-file -no-site-file'.
232;;In the `*scratch*' buffer, evaluate:"))))
233
234(defgroup fast-lock nil 217(defgroup fast-lock nil
235 "Font Lock support mode to cache fontification." 218 "Font Lock support mode to cache fontification."
236 :load 'fast-lock 219 :load 'fast-lock