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
13dbab28
Commit
13dbab28
authored
Feb 28, 2008
by
Stefan Monnier
Browse files
(utf-7-encode): Never skip the trailing - for the `imap' variant.
parent
0aa5691d
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
1 deletion
+8
-1
lisp/ChangeLog
lisp/ChangeLog
+5
-0
lisp/international/utf-7.el
lisp/international/utf-7.el
+3
-1
No files found.
lisp/ChangeLog
View file @
13dbab28
2008-02-28 Daiki Ueno <ueno@unixuser.org>
* international/utf-7.el (utf-7-encode): Never skip the trailing - for
the `imap' variant.
2008-02-27 Juanma Barranquero <lekktu@gmail.com>
* uniquify.el (uniquify-buffer-base-name): If the base name is an
lisp/international/utf-7.el
View file @
13dbab28
...
...
@@ -126,7 +126,9 @@ ESC and SKIP-CHARS are adjusted for the normal and IMAP versions."
;; consistent with iconv, at least regarding `='.
(
skip-chars-forward
"^= \t\n"
)
(
delete-region
(
point
)
(
point-max
))))
(
unless
(
eobp
)
;; RFC2060 stipulates that all names MUST end in US-ASCII (i.e.
;; a name that ends with a Unicode octet MUST end with a "-").
(
if
(
or
imap
(
not
(
eobp
)))
(
insert
?-
)))))
nil
))
...
...
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