mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-15 10:30:25 -08:00
Fix compilation warning in qp.el
* lisp/mail/qp.el (quoted-printable-encode-region): No need to convert the regexp to multibyte before searching.
This commit is contained in:
parent
982af7f516
commit
d16b73fb4a
1 changed files with 1 additions and 2 deletions
|
|
@ -115,8 +115,7 @@ encode lines starting with \"From\"."
|
|||
(setq class "\010-\012\014\040-\074\076-\177"))
|
||||
(save-excursion
|
||||
(goto-char from)
|
||||
(if (re-search-forward (string-to-multibyte "[^\x0-\x7f\x80-\xff]")
|
||||
to t)
|
||||
(if (re-search-forward "[^\x0-\x7f\x80-\xff]" to t)
|
||||
(error "Multibyte character in QP encoding region"))
|
||||
(save-restriction
|
||||
(narrow-to-region from to)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue