(quoted-printable-internal-encode-region): Use 'looking-at-as-unibyte
authormorioka <morioka>
Fri, 15 May 1998 10:31:50 +0000 (10:31 +0000)
committermorioka <morioka>
Fri, 15 May 1998 10:31:50 +0000 (10:31 +0000)
instead of local binding for enable-multibyte-characters.

mel-q.el

index 6ec4f0b..130865e 100644 (file)
--- a/mel-q.el
+++ b/mel-q.el
     (save-restriction
       (narrow-to-region start end)
       (goto-char start)
-      (let ((col 0)
-           enable-multibyte-characters)
+      (let ((col 0))
        (while (< (point)(point-max))
          (cond ((>= col 75)
                 (insert "=\n")
                 (setq col 0)
                 )
-               ((looking-at "^From ")
+               ((looking-at-as-unibyte "^From ")
                 (replace-match "=46rom ")
                 (backward-char 1)
                 (setq col (+ col 6))
                 )
-               ((looking-at "[ \t]\n")
+               ((looking-at-as-unibyte "[ \t]\n")
                 (forward-char 1)
                 (insert "=\n")
                 (forward-char 1)