/[emacs]/emacs/lisp/international/mule-util.el
ViewVC logotype

Diff of /emacs/lisp/international/mule-util.el

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.44 by pj, Sun Jul 15 19:53:53 2001 UTC revision 1.45 by rms, Sun Nov 18 06:49:25 2001 UTC
# Line 56  TYPE should be `list' or `vector'." Line 56  TYPE should be `list' or `vector'."
56             (error "Invalid type: %s" type)))             (error "Invalid type: %s" type)))
57  ;;;    val)  ;;;    val)
58  )  )
59    (make-obsolete 'string-to-sequence
60                   "Use `string-to-list' or `string-to-vector'"
61                   "21.3")
62    
63  ;;;###autoload  ;;;###autoload
64  (defsubst string-to-list (string)  (defsubst string-to-list (string)
65    "Return a list of characters in STRING."    "Return a list of characters in STRING."
66    (string-to-sequence string 'list))    (append string nil))
67    
68  ;;;###autoload  ;;;###autoload
69  (defsubst string-to-vector (string)  (defsubst string-to-vector (string)
70    "Return a vector of characters in STRING."    "Return a vector of characters in STRING."
71    (string-to-sequence string 'vector))    (vconcat string))
72    
73  ;;;###autoload  ;;;###autoload
74  (defun store-substring (string idx obj)  (defun store-substring (string idx obj)

Legend:
Removed from v.1.44  
changed lines
  Added in v.1.45

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26