From eaf17c6b641d62bc3e95632bbcb7f036674c27d2 Mon Sep 17 00:00:00 2001 From: Kenichi Handa Date: Tue, 10 Feb 1998 04:08:26 +0000 Subject: [PATCH] (Fstring_bytes): Declare arg STRING as Lisp_Object. --- src/fns.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/fns.c b/src/fns.c index b0b8e218aae..a723b3f1c70 100644 --- a/src/fns.c +++ b/src/fns.c @@ -183,6 +183,7 @@ 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) + Lisp_Object string; { CHECK_STRING (string, 1); return make_number (XSTRING (string)->size_byte); -- 2.39.5