branch: scratch/el-mock
commit 70ef9873cd494a7d76f2d94173f0d1db7b052897
Author: Johan Andersson <johan.rej...@gmail.com>
Commit: Johan Andersson <johan.rej...@gmail.com>

    Remove outdated bug report information
---
 el-mock.el | 45 ---------------------------------------------
 1 file changed, 45 deletions(-)

diff --git a/el-mock.el b/el-mock.el
index e115ec1d7b..a78b98c9e9 100644
--- a/el-mock.el
+++ b/el-mock.el
@@ -56,27 +56,6 @@
 ;; [EVAL IT] (describe-function 'stub)
 ;; [EVAL IT] (describe-function 'mock)
 
-
-;;; Bug Report:
-;;
-;; If you have problem, send a bug report via M-x mock-send-bug-report.
-;; The step is:
-;;  0) Setup mail in Emacs, the easiest way is:
-;;       (setq user-mail-address "your@mail.address")
-;;       (setq user-full-name "Your Full Name")
-;;       (setq smtpmail-smtp-server "your.smtp.server.jp")
-;;       (setq mail-user-agent 'message-user-agent)
-;;       (setq message-send-mail-function 'message-smtpmail-send-it)
-;;  1) Be sure to use the LATEST version of el-mock.el.
-;;  2) Enable debugger. M-x toggle-debug-on-error or (setq debug-on-error t)
-;;  3) Use Lisp version instead of compiled one: (load "el-mock.el")
-;;  4) Do it!
-;;  5) If you got an error, please do not close *Backtrace* buffer.
-;;  6) M-x mock-send-bug-report and M-x insert-buffer *Backtrace*
-;;  7) Describe the bug using a precise recipe.
-;;  8) Type C-c C-c to send.
-;;  # If you are a Japanese, please write in Japanese:-)
-
 ;;; Code:
 
 (eval-when-compile (require 'cl))
@@ -343,30 +322,6 @@ Example:
 (put 'mocklet 'lisp-indent-function 1)
 (put 'stublet 'lisp-indent-function 1)
 
-;;;; Bug report
-(defvar mock-maintainer-mail-address
-  (concat "rubiki" "tch@ru" "by-lang.org"))
-(defvar mock-bug-report-salutation
-  "Describe bug below, using a precise recipe.
-
-When I executed M-x ...
-
-How to send a bug report:
-  1) Be sure to use the LATEST version of el-mock.el.
-  2) Enable debugger. M-x toggle-debug-on-error or (setq debug-on-error t)
-  3) Use Lisp version instead of compiled one: (load \"el-mock.el\")
-  4) If you got an error, please paste *Backtrace* buffer.
-  5) Type C-c C-c to send.
-# If you are a Japanese, please write in Japanese:-)")
-(defun mock-send-bug-report ()
-  (interactive)
-  (reporter-submit-bug-report
-   mock-maintainer-mail-address
-   "el-mock.el"
-   (apropos-internal "^mock-" 'boundp)
-   nil nil
-   mock-bug-report-salutation))
-
 ;;;; unit test
 (dont-compile
   (when (fboundp 'expectations)

Reply via email to