# HG changeset patch # User vins # Date 1155259823 0 # Node ID db783273b3997ece560938498892ff3001714b29 # Parent 8f5e032209f3bb7e3f2142d7b5be120e38fdd054 [xemacs-hg @ 2006-08-11 01:30:22 by vins] Move definition of string-to-char-list to obsolete.el. diff -r 8f5e032209f3 -r db783273b399 lisp/ChangeLog --- a/lisp/ChangeLog Thu Aug 10 21:51:04 2006 +0000 +++ b/lisp/ChangeLog Fri Aug 11 01:30:23 2006 +0000 @@ -1,3 +1,10 @@ +2006-08-10 Vin Shelton + + * subr.el: Move string-to-char-list to obsolete.el. + + * obsolete.el (string-to-char-list): Move obsolete definition + here, so dumping can succeed. + 2006-08-07 Ville Skyttä * subr.el (string-to-char-list): New backwards compatibility alias diff -r 8f5e032209f3 -r db783273b399 lisp/obsolete.el --- a/lisp/obsolete.el Thu Aug 10 21:51:04 2006 +0000 +++ b/lisp/obsolete.el Fri Aug 11 01:30:23 2006 +0000 @@ -357,6 +357,9 @@ (make-obsolete 'find-non-ascii-charset-region "use (delq 'ascii (charsets-in-region START END)) instead.") +;; < 21.5 compatibility, eg. https://bugzilla.redhat.com/201524#c2 +(define-obsolete-function-alias 'string-to-char-list 'string-to-list) + ;;;;;;;;;;;;;;;;;;;;;;;;;;;; window-system objects ;; the functionality of column.el has been moved into C diff -r 8f5e032209f3 -r db783273b399 lisp/subr.el --- a/lisp/subr.el Thu Aug 10 21:51:04 2006 +0000 +++ b/lisp/subr.el Fri Aug 11 01:30:23 2006 +0000 @@ -928,9 +928,6 @@ "Return a list of characters in STRING." (mapcar #'identity string)) -;; < 21.5 compatibility, eg. https://bugzilla.redhat.com/201524#c2 -(define-obsolete-function-alias 'string-to-char-list 'string-to-list) - (defun string-to-vector (string) "Return a vector of characters in STRING." (mapvector #'identity string))