Mercurial > emacs
changeset 21346:199e97fad577
(report-emacs-bug-hook): Fix the regexp for
matching non-ASCII characters.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Fri, 03 Apr 1998 05:11:30 +0000 |
parents | 89cdcab46969 |
children | aca24aa07fb4 |
files | lisp/mail/emacsbug.el |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/mail/emacsbug.el Fri Apr 03 04:40:40 1998 +0000 +++ b/lisp/mail/emacsbug.el Fri Apr 03 05:11:30 1998 +0000 @@ -190,7 +190,7 @@ (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))