comparison etc/NEWS @ 38649:021a0445b5f6

Mention the change in base64-decode-string whereby the result is always a unibyte string.
author Eli Zaretskii <eliz@gnu.org>
date Wed, 01 Aug 2001 16:03:11 +0000
parents f99d2e5ee830
children ce6b6f1fd86f
comparison
equal deleted inserted replaced
38648:66e920bfc687 38649:021a0445b5f6
2267 `before-change-functions' and `after-change-functions' instead. 2267 `before-change-functions' and `after-change-functions' instead.
2268 2268
2269 ** Code that uses `concat' with integer args now gets an error, as 2269 ** Code that uses `concat' with integer args now gets an error, as
2270 long promised. 2270 long promised.
2271 2271
2272 ** The function base64-decode-string now always returns a unibyte
2273 string.
2274
2272 ** Not a Lisp incompatibility as such but, with the introduction of 2275 ** Not a Lisp incompatibility as such but, with the introduction of
2273 extra private charsets, there is now only one slot free for a new 2276 extra private charsets, there is now only one slot free for a new
2274 dimension-2 private charset. User code which tries to add more than 2277 dimension-2 private charset. User code which tries to add more than
2275 one extra will fail unless you rebuild Emacs with some standard 2278 one extra will fail unless you rebuild Emacs with some standard
2276 charset(s) removed; that is probably inadvisable because it changes 2279 charset(s) removed; that is probably inadvisable because it changes
2692 2695
2693 ** The new function `mapc' is like `mapcar' but doesn't collect the 2696 ** The new function `mapc' is like `mapcar' but doesn't collect the
2694 argument function's results. 2697 argument function's results.
2695 2698
2696 ** The functions base64-decode-region and base64-decode-string now 2699 ** The functions base64-decode-region and base64-decode-string now
2697 signal an error instead of returning nil if decoding fails. 2700 signal an error instead of returning nil if decoding fails. Also,
2701 base64-decode-string now always returns a unibyte string (in Emacs 20,
2702 it returned a multibyte string when the result was a valid multibyte
2703 sequence).
2698 2704
2699 ** The function sendmail-user-agent-compose now recognizes a `body' 2705 ** The function sendmail-user-agent-compose now recognizes a `body'
2700 header in the list of headers passed to it. 2706 header in the list of headers passed to it.
2701 2707
2702 ** The new function member-ignore-case works like `member', but 2708 ** The new function member-ignore-case works like `member', but