From 70f6e5b0003c4fbf1afb6119325a4cd5984da592 Mon Sep 17 00:00:00 2001 From: Kenichi Handa Date: Tue, 10 Feb 1998 04:08:26 +0000 Subject: (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); -- cgit v1.2.1