]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fstring_bytes): Declare arg STRING as Lisp_Object.
authorKenichi Handa <handa@m17n.org>
Tue, 10 Feb 1998 04:08:26 +0000 (04:08 +0000)
committerKenichi Handa <handa@m17n.org>
Tue, 10 Feb 1998 04:08:26 +0000 (04:08 +0000)
src/fns.c

index b0b8e218aae60e266397f447d50897db88044cba..a723b3f1c7013cd34e72805024e09707de27e226 100644 (file)
--- 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);