emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r109819: qp.el (quoted-printable-deco


From: Kenichi Handa
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r109819: qp.el (quoted-printable-decode-region): Decode multiple bytes at once.
Date: Thu, 30 Aug 2012 21:16:38 +0900
User-agent: Bazaar (2.5.0)

------------------------------------------------------------
revno: 109819 [merge]
committer: Kenichi Handa <address@hidden>
branch nick: trunk
timestamp: Thu 2012-08-30 21:16:38 +0900
message:
  qp.el (quoted-printable-decode-region): Decode multiple bytes at once.
modified:
  lisp/gnus/ChangeLog
  lisp/gnus/qp.el
=== modified file 'lisp/gnus/ChangeLog'
--- a/lisp/gnus/ChangeLog       2012-08-29 22:04:05 +0000
+++ b/lisp/gnus/ChangeLog       2012-08-30 12:11:57 +0000
@@ -1,3 +1,8 @@
+2012-08-30  Kenichi Handa  <address@hidden>
+
+       * qp.el (quoted-printable-decode-region): Decode multiple bytes at
+       once.
+
 2012-08-29  Julien Danjou  <address@hidden>
 
        * gnus-notifications.el: New file.

=== modified file 'lisp/gnus/qp.el'
--- a/lisp/gnus/qp.el   2012-01-19 07:21:25 +0000
+++ b/lisp/gnus/qp.el   2012-08-30 12:11:57 +0000
@@ -53,7 +53,10 @@
       ;; or both of which are lowercase letters in "abcdef", is
       ;; formally illegal. A robust implementation might choose to
       ;; recognize them as the corresponding uppercase letters.''
-      (let ((case-fold-search t))
+      (let ((case-fold-search t)
+           (decode-hex #'(lambda (n1 n2)
+                           (+ (* (if (<= n1 ?9) (- n1 ?0) (+ (- n1 ?A) 10)) 16)
+                              (if (<= n2 ?9) (- n2 ?0) (+ (- n2 ?A) 10))))))
        (narrow-to-region from to)
        ;; Do this in case we're called from Gnus, say, in a buffer
        ;; which already contains non-ASCII characters which would
@@ -65,12 +68,17 @@
                    (not (eobp)))
          (cond ((eq (char-after (1+ (point))) ?\n)
                 (delete-char 2))
-               ((looking-at "=[0-9A-F][0-9A-F]")
-                (let ((byte (string-to-number (buffer-substring (1+ (point))
-                                                             (+ 3 (point)))
-                                           16)))
-                  (mm-insert-byte byte 1)
-                  (delete-char 3)))
+               ((looking-at "\\(=[0-9A-F][0-9A-F]\\)+")
+                ;; Decode this sequence at once; i.e. by a single
+                ;; deletion and insertion.
+                (let* ((n (/ (- (match-end 0) (point)) 3))
+                       (str (make-string n 0)))
+                  (dotimes (i n)
+                    (aset str i (funcall decode-hex (char-after (1+ (point)))
+                                         (char-after (+ 2 (point)))))
+                    (forward-char 3))
+                  (delete-region (match-beginning 0) (match-end 0))
+                  (insert str)))
                (t
                 (message "Malformed quoted-printable text")
                 (forward-char)))))


reply via email to

[Prev in Thread] Current Thread [Next in Thread]