]> git.eshelyaron.com Git - emacs.git/commitdiff
(report-emacs-bug-hook): Fix the regexp for
authorRichard M. Stallman <rms@gnu.org>
Fri, 3 Apr 1998 05:11:30 +0000 (05:11 +0000)
committerRichard M. Stallman <rms@gnu.org>
Fri, 3 Apr 1998 05:11:30 +0000 (05:11 +0000)
matching non-ASCII characters.

lisp/mail/emacsbug.el

index 3383642b8451647656a7261be2c0a065412da939..de4e1f4c24ed8c2b30dd463eb1cfbcf3489a68ee 100644 (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))