emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] master f74d496: * lisp/subr.el (string-make-unibyte, strin


From: Stefan Monnier
Subject: [Emacs-diffs] master f74d496: * lisp/subr.el (string-make-unibyte, string-make-multibyte): Obsolete.
Date: Mon, 30 Jan 2017 18:02:22 +0000 (UTC)

branch: master
commit f74d496478cd57f252817bd7437fe1b7972ce01f
Author: Stefan Monnier <address@hidden>
Commit: Stefan Monnier <address@hidden>

    * lisp/subr.el (string-make-unibyte, string-make-multibyte): Obsolete.
---
 etc/NEWS     |    1 +
 lisp/subr.el |    2 ++
 2 files changed, 3 insertions(+)

diff --git a/etc/NEWS b/etc/NEWS
index 12ff21f..e368ff8 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -738,6 +738,7 @@ instead.
 
 * 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.
diff --git a/lisp/subr.el b/lisp/subr.el
index a6ba05c..a204577 100644
--- a/lisp/subr.el
+++ b/lisp/subr.el
@@ -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."



reply via email to

[Prev in Thread] Current Thread [Next in Thread]