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:
parent
18e5a64ad6
commit
03a5af7baf
@ -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))
|
||||
|
Loading…
Reference in New Issue
Block a user