From: Kenichi Handa Date: Tue, 10 Feb 1998 04:08:26 +0000 (+0000) Subject: (Fstring_bytes): Declare arg STRING as Lisp_Object. X-Git-Tag: emacs-20.3~2193 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=eaf17c6b641d62bc3e95632bbcb7f036674c27d2;p=emacs.git (Fstring_bytes): Declare arg STRING as Lisp_Object. --- 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);