(uudecode-decode-region-internal): Make it work in a
multibyte buffer.
This commit is contained in:
parent
51524f43ab
commit
0d7c8ac455
2 changed files with 9 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2007-01-12 Kenichi Handa <handa@m17n.org>
|
||||
|
||||
* uudecode.el (uudecode-decode-region-internal): Make it work in a
|
||||
multibyte buffer.
|
||||
|
||||
2007-01-07 Reiner Steib <Reiner.Steib@gmx.de>
|
||||
|
||||
* gnus-soup.el: Add missing :group in previous change.
|
||||
|
|
|
@ -205,7 +205,10 @@ If FILE-NAME is non-nil, save the result to FILE-NAME."
|
|||
(insert (apply 'concat (nreverse result)))))
|
||||
(or (markerp end) (setq end (set-marker (make-marker) end)))
|
||||
(goto-char start)
|
||||
(insert (apply 'concat (nreverse result)))
|
||||
(if enable-multibyte-characters
|
||||
(mapc #'(lambda (x) (insert (string-to-multibyte x)))
|
||||
(nreverse result))
|
||||
(insert (apply 'concat (nreverse result))))
|
||||
(delete-region (point) end))))))
|
||||
|
||||
;;;###autoload
|
||||
|
|
Loading…
Add table
Reference in a new issue