summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKenichi Handa <handa@m17n.org>1998-02-10 04:08:26 +0000
committerKenichi Handa <handa@m17n.org>1998-02-10 04:08:26 +0000
commit70f6e5b0003c4fbf1afb6119325a4cd5984da592 (patch)
treeec04c896853e9e37c27a8e7d8451474880ca1396
parent2b37a17c6ca35fb049e90caa2594559e0a5b7b3c (diff)
downloademacs-70f6e5b0003c4fbf1afb6119325a4cd5984da592.tar.gz
(Fstring_bytes): Declare arg STRING as Lisp_Object.
-rw-r--r--src/fns.c1
1 files changed, 1 insertions, 0 deletions
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);