Remove the check for non-ASCII in report-emacs-bug-hook (Bug#7925).

* mail/emacsbug.el (report-emacs-bug-hook): Remove the check for
non-ASCII characters.
This commit is contained in:
Chong Yidong 2011-02-06 10:04:31 -05:00
parent 184469b7a0
commit f8b351c190
2 changed files with 5 additions and 12 deletions

View file

@ -1,3 +1,8 @@
2011-02-06 Chong Yidong <cyd@stupidchicken.com>
* mail/emacsbug.el (report-emacs-bug-hook): Remove the check for
non-ASCII characters (Bug#7925).
2011-02-05 Glenn Morris <rgm@gnu.org>
* emacs-lisp/cl-macs.el (return-from): Fix doc typo.

View file

@ -340,18 +340,6 @@ usually do not have translators to read other languages for them.\n\n")
(string-equal (buffer-substring-no-properties (point-min) (point))
report-emacs-bug-orig-text)
(error "No text entered in bug report"))
;; Check the buffer contents and reject non-English letters.
;; FIXME message-mode probably does this anyway.
(goto-char (point-min))
(skip-chars-forward "\0-\177")
(unless (eobp)
(if (or report-emacs-bug-no-confirmation
(y-or-n-p "Convert non-ASCII letters to hexadecimal? "))
(while (progn (skip-chars-forward "\0-\177")
(not (eobp)))
(let ((ch (following-char)))
(delete-char 1)
(insert (format "=%02x" ch))))))
;; The last warning for novice users.
(unless (or report-emacs-bug-no-confirmation