diff lisp/subr.el @ 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 5df5ea55d3fc
children db783273b399
line wrap: on
line diff
--- 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))