# HG changeset patch # User Richard M. Stallman # Date 886971533 0 # Node ID ad9e06c97d951ba7d8a151de166ee7b37d00f368 # Parent 6ee33d0e1682d42ec2cf2b3742c22271bf4365e5 (Fstring_bytes): New function. (syms_of_fns): defsubr it. diff -r 6ee33d0e1682 -r ad9e06c97d95 src/fns.c --- a/src/fns.c Sun Feb 08 20:55:44 1998 +0000 +++ b/src/fns.c Sun Feb 08 20:58:53 1998 +0000 @@ -179,6 +179,15 @@ return length; } +DEFUN ("string-bytes", Fstring_bytes, Sstring_bytes, 1, 1, 0, + "Return the number of bytes in STRING.\n\ +If STRING is a multibyte string, this is greater than the length of STRING.") + (string) +{ + CHECK_STRING (string, 1); + return make_number (XSTRING (string)->size_byte); +} + DEFUN ("string-equal", Fstring_equal, Sstring_equal, 2, 2, 0, "Return t if two strings have identical contents.\n\ Case is significant, but text properties are ignored.\n\ @@ -2541,6 +2550,7 @@ defsubr (&Srandom); defsubr (&Slength); defsubr (&Ssafe_length); + defsubr (&Sstring_bytes); defsubr (&Sstring_equal); defsubr (&Sstring_lessp); defsubr (&Sappend);