aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
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);