# HG changeset patch # User scop # Date 1155212922 0 # Node ID f17718066b5e1f06decf065a54b1d55bcb7e3272 # Parent 09e49e03d79e2f7d223594fb85bb7d25975fd791 [xemacs-hg @ 2006-08-10 12:28:41 by scop] Alias string-to-char-list to string-to-list <1154980866.2997.72.camel@localhost.localdomain> diff -r 09e49e03d79e -r f17718066b5e lisp/ChangeLog --- a/lisp/ChangeLog Wed Aug 09 21:51:03 2006 +0000 +++ b/lisp/ChangeLog Thu Aug 10 12:28:42 2006 +0000 @@ -1,3 +1,8 @@ +2006-08-07 Ville Skyttä + + * subr.el (string-to-char-list): New backwards compatibility alias + for `string-to-list'. + 2006-08-07 Aidan Kehoe * frame.el (suspend-or-iconify-emacs): diff -r 09e49e03d79e -r f17718066b5e lisp/subr.el --- a/lisp/subr.el Wed Aug 09 21:51:03 2006 +0000 +++ b/lisp/subr.el Thu Aug 10 12:28:42 2006 +0000 @@ -928,6 +928,9 @@ "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))