emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] master 0214011: Deprecations (bug#23850)


From: Leo Liu
Subject: [Emacs-diffs] master 0214011: Deprecations (bug#23850)
Date: Sun, 26 Jun 2016 01:59:32 +0000 (UTC)

branch: master
commit 0214011cc2476bb056067f57d221ad313a910f22
Author: Leo Liu <address@hidden>
Commit: Leo Liu <address@hidden>

    Deprecations (bug#23850)
    
    * lisp/subr.el (string-to-unibyte, string-as-unibyte,
    string-to-multibyte, string-as-multibyte): Make obsolete.
---
 lisp/subr.el |    6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/lisp/subr.el b/lisp/subr.el
index 48ff501..27b1c8a 100644
--- a/lisp/subr.el
+++ b/lisp/subr.el
@@ -1300,6 +1300,12 @@ be a list of the form returned by `event-start' and 
`event-end'."
 (make-obsolete 'forward-point "use (+ (point) N) instead." "23.1")
 (make-obsolete 'buffer-has-markers-at nil "24.3")
 
+;; bug#23850
+(make-obsolete 'string-to-unibyte   "use `encode-coding-string'." "25.2")
+(make-obsolete 'string-as-unibyte   "use `encode-coding-string'." "25.2")
+(make-obsolete 'string-to-multibyte "use `decode-coding-string'." "25.2")
+(make-obsolete 'string-as-multibyte "use `decode-coding-string'." "25.2")
+
 (defun insert-string (&rest args)
   "Mocklisp-compatibility insert function.
 Like the function `insert' except that any argument that is a number



reply via email to

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