Mercurial > hg > xemacs-beta
changeset 3555:db783273b399
[xemacs-hg @ 2006-08-11 01:30:22 by vins]
Move definition of string-to-char-list to obsolete.el.
author | vins |
---|---|
date | Fri, 11 Aug 2006 01:30:23 +0000 |
parents | 8f5e032209f3 |
children | 2161ac78b41e |
files | lisp/ChangeLog lisp/obsolete.el lisp/subr.el |
diffstat | 3 files changed, 10 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- 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 <acs@xemacs.org> + + * 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ä <scop@xemacs.org> * subr.el (string-to-char-list): New backwards compatibility alias
--- 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
--- 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))