diff options
| author | Kenichi Handa | 1998-02-10 04:08:26 +0000 |
|---|---|---|
| committer | Kenichi Handa | 1998-02-10 04:08:26 +0000 |
| commit | eaf17c6b641d62bc3e95632bbcb7f036674c27d2 (patch) | |
| tree | 4717c03822980eede03ee5d2bf4afa225bd820df /src | |
| parent | bca7646d487d21235262b80c367ede98a200fbd4 (diff) | |
| download | emacs-eaf17c6b641d62bc3e95632bbcb7f036674c27d2.tar.gz emacs-eaf17c6b641d62bc3e95632bbcb7f036674c27d2.zip | |
(Fstring_bytes): Declare arg STRING as Lisp_Object.
Diffstat (limited to 'src')
| -rw-r--r-- | src/fns.c | 1 |
1 files changed, 1 insertions, 0 deletions
| @@ -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\ |
| 184 | If STRING is a multibyte string, this is greater than the length of STRING.") | 184 | If 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); |