1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-02 08:22:22 +00:00

(report-emacs-bug-hook): Fix the regexp for

matching non-ASCII characters.
This commit is contained in:
Richard M. Stallman 1998-04-03 05:11:30 +00:00
parent 18e5a64ad6
commit 03a5af7baf

View File

@ -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))