From 03a5af7bafa8ec74ca4f75f108872c66adcb1156 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Fri, 3 Apr 1998 05:11:30 +0000 Subject: [PATCH] (report-emacs-bug-hook): Fix the regexp for matching non-ASCII characters. --- lisp/mail/emacsbug.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/mail/emacsbug.el b/lisp/mail/emacsbug.el index 3383642b845..de4e1f4c24e 100644 --- a/lisp/mail/emacsbug.el +++ b/lisp/mail/emacsbug.el @@ -190,7 +190,7 @@ Type SPC to scroll through this section and its subsections."))) (save-excursion (goto-char (point-min)) (let ((enable-multibyte-characters nil) - (pattern (format "[%c-%c]" 128 255)) + (pattern (format "[^%c-%c]" 0 127)) ch) (while (re-search-forward pattern nil t) (setq ch (preceding-char)) -- 2.39.2