comparison man/lispref/strings.texi @ 284:558f606b08ae r21-0b40

Import from CVS: tag r21-0b40
author cvs
date Mon, 13 Aug 2007 10:34:13 +0200
parents 7df0dd720c89
children 54f7aa390f4f
comparison
equal deleted inserted replaced
283:fa3d41851a08 284:558f606b08ae
125 125
126 The following functions create strings, either from scratch, or by 126 The following functions create strings, either from scratch, or by
127 putting strings together, or by taking them apart. 127 putting strings together, or by taking them apart.
128 128
129 @defun string &rest characters 129 @defun string &rest characters
130 This function returns of string made up of @var{characters}. 130 This function returns a new string made up of @var{characters}.
131 131
132 @example 132 @example
133 (string ?X ?E ?m ?a ?c ?s) 133 (string ?X ?E ?m ?a ?c ?s)
134 @result{} "XEmacs" 134 @result{} "XEmacs"
135 (string) 135 (string)