From: Richard M. Stallman Date: Fri, 3 Apr 1998 05:11:30 +0000 (+0000) Subject: (report-emacs-bug-hook): Fix the regexp for X-Git-Tag: emacs-20.3~1728 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=03a5af7bafa8ec74ca4f75f108872c66adcb1156;p=emacs.git (report-emacs-bug-hook): Fix the regexp for matching non-ASCII characters. --- 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))