core: Remove string.

* string.c (string): Remove.
* module/mes/type-0.mes (string): New function.
This commit is contained in:
Jan Nieuwenhuizen 2016-12-23 20:44:04 +01:00
parent e8a591f91d
commit 9d3e079a6d
2 changed files with 3 additions and 6 deletions

View file

@ -116,3 +116,6 @@
;;; core: accessors
(define (string->list s)
(core:car s))
(define (string . lst)
(make-cell <cell:string> lst 0))

View file

@ -18,12 +18,6 @@
* along with Mes. If not, see <http://www.gnu.org/licenses/>.
*/
SCM
string (SCM x) ///((arity . n))
{
return MAKE_STRING (x);
}
SCM
string_append (SCM x) ///((arity . n))
{