]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/subr.el (string-make-unibyte, string-make-multibyte): Obsolete.
authorStefan Monnier <monnier@iro.umontreal.ca>
Mon, 30 Jan 2017 18:02:18 +0000 (13:02 -0500)
committerStefan Monnier <monnier@iro.umontreal.ca>
Mon, 30 Jan 2017 18:02:18 +0000 (13:02 -0500)
etc/NEWS
lisp/subr.el

index 12ff21f39aefcd9876249d84d0b252cc05c2c7de..e368ff84f81a637708ef59f4b0e4b1538891478e 100644 (file)
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -738,6 +738,7 @@ instead.
 \f
 * Lisp Changes in Emacs 26.1
 
+** string-(to|as|make)-(uni|multi)byte are now declared obsolete.
 ** New variable 'while-no-input-ignore-events' which allow
 setting which special events 'while-no-input' should ignore.
 It is a list of symbols.
index a6ba05c202161bed7754e3658f7f97b5008b5621..a204577ddf94094c28403c663e7b7e5aaf9ba0ef 100644 (file)
@@ -1417,8 +1417,10 @@ be a list of the form returned by `event-start' and `event-end'."
 ;; bug#23850
 (make-obsolete 'string-to-unibyte   "use `encode-coding-string'." "26.1")
 (make-obsolete 'string-as-unibyte   "use `encode-coding-string'." "26.1")
+(make-obsolete 'string-make-unibyte   "use `encode-coding-string'." "26.1")
 (make-obsolete 'string-to-multibyte "use `decode-coding-string'." "26.1")
 (make-obsolete 'string-as-multibyte "use `decode-coding-string'." "26.1")
+(make-obsolete 'string-make-multibyte "use `decode-coding-string'." "26.1")
 
 (defun log10 (x)
   "Return (log X 10), the log base 10 of X."