Mercurial > hg > xemacs-beta
changeset 3553:f17718066b5e
[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>
author | scop |
---|---|
date | Thu, 10 Aug 2006 12:28:42 +0000 |
parents | 09e49e03d79e |
children | 8f5e032209f3 |
files | lisp/ChangeLog lisp/subr.el |
diffstat | 2 files changed, 8 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- 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ä <scop@xemacs.org> + + * subr.el (string-to-char-list): New backwards compatibility alias + for `string-to-list'. + 2006-08-07 Aidan Kehoe <kehoea@parhasard.net> * frame.el (suspend-or-iconify-emacs):
--- 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))