Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
f45de83b
Commit
f45de83b
authored
Sep 30, 2008
by
Eli Zaretskii
Browse files
(mail-unquote-printable-region): Use insert-byte instead of insert-char,
when the UNIBYTE arg is non-nil.
parent
9721264a
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
2 deletions
+9
-2
lisp/ChangeLog
lisp/ChangeLog
+6
-0
lisp/mail/mail-utils.el
lisp/mail/mail-utils.el
+3
-2
No files found.
lisp/ChangeLog
View file @
f45de83b
2008-09-30 Eli Zaretskii <eliz@gnu.org>
* mail/mail-utils.el (mail-unquote-printable-region): Use
insert-byte instead of insert-char, when the UNIBYTE arg is
non-nil.
2008-09-30 Daiki Ueno <ueno@unixuser.org>
2008-09-30 Daiki Ueno <ueno@unixuser.org>
* epa-file.el (epa-file-insert-file-contents): Fix typo.
* epa-file.el (epa-file-insert-file-contents): Fix typo.
...
...
lisp/mail/mail-utils.el
View file @
f45de83b
...
@@ -141,8 +141,9 @@ as Rmail does."
...
@@ -141,8 +141,9 @@ as Rmail does."
(if unibyte
(if unibyte
(progn
(progn
(replace-match "")
(replace-match "")
;; insert-char will insert this as unibyte,
;; insert-byte will insert this as a
(insert-char char 1))
;; corresponding eight-bit character.
(insert-byte char 1))
(replace-match (make-string 1 char) t t))))
(replace-match (make-string 1 char) t t))))
(noerror
(noerror
(setq failed t))
(setq failed t))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment