diff options
author | Kenichi Handa <handa@m17n.org> | 1998-02-10 04:08:26 +0000 |
---|---|---|
committer | Kenichi Handa <handa@m17n.org> | 1998-02-10 04:08:26 +0000 |
commit | eaf17c6b641d62bc3e95632bbcb7f036674c27d2 (patch) | |
tree | 4717c03822980eede03ee5d2bf4afa225bd820df | |
parent | bca7646d487d21235262b80c367ede98a200fbd4 (diff) | |
download | emacs-eaf17c6b641d62bc3e95632bbcb7f036674c27d2.tar.gz |
(Fstring_bytes): Declare arg STRING as Lisp_Object.
-rw-r--r-- | src/fns.c | 1 |
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); |