changeset 20881:fd35cf0efd94

(Fstring_bytes): Declare arg STRING as Lisp_Object.
author Kenichi Handa <handa@m17n.org>
date Tue, 10 Feb 1998 04:08:26 +0000
parents 4f6eebb11fc0
children 6566e48896f4
files src/fns.c
diffstat 1 files changed, 1 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/src/fns.c	Tue Feb 10 04:05:47 1998 +0000
+++ b/src/fns.c	Tue Feb 10 04:08:26 1998 +0000
@@ -183,6 +183,7 @@
   "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);