aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKenichi Handa1998-02-10 04:08:26 +0000
committerKenichi Handa1998-02-10 04:08:26 +0000
commiteaf17c6b641d62bc3e95632bbcb7f036674c27d2 (patch)
tree4717c03822980eede03ee5d2bf4afa225bd820df /src
parentbca7646d487d21235262b80c367ede98a200fbd4 (diff)
downloademacs-eaf17c6b641d62bc3e95632bbcb7f036674c27d2.tar.gz
emacs-eaf17c6b641d62bc3e95632bbcb7f036674c27d2.zip
(Fstring_bytes): Declare arg STRING as Lisp_Object.
Diffstat (limited to 'src')
-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,
183 "Return the number of bytes in STRING.\n\ 183 "Return the number of bytes in STRING.\n\
184If STRING is a multibyte string, this is greater than the length of STRING.") 184If STRING is a multibyte string, this is greater than the length of STRING.")
185 (string) 185 (string)
186 Lisp_Object string;
186{ 187{
187 CHECK_STRING (string, 1); 188 CHECK_STRING (string, 1);
188 return make_number (XSTRING (string)->size_byte); 189 return make_number (XSTRING (string)->size_byte);