aboutsummaryrefslogtreecommitdiffstats
path: root/src/data.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/data.c')
-rw-r--r--src/data.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/data.c b/src/data.c
index 955c39727bb..dedbd51f36e 100644
--- a/src/data.c
+++ b/src/data.c
@@ -377,7 +377,8 @@ DEFUN ("stringp", Fstringp, Sstringp, 1, 1, 0,
377 377
378DEFUN ("multibyte-string-p", Fmultibyte_string_p, Smultibyte_string_p, 378DEFUN ("multibyte-string-p", Fmultibyte_string_p, Smultibyte_string_p,
379 1, 1, 0, 379 1, 1, 0,
380 doc: /* Return t if OBJECT is a multibyte string. */) 380 doc: /* Return t if OBJECT is a multibyte string.
381Return nil if OBJECT is either a unibyte string, or not a string. */)
381 (Lisp_Object object) 382 (Lisp_Object object)
382{ 383{
383 if (STRINGP (object) && STRING_MULTIBYTE (object)) 384 if (STRINGP (object) && STRING_MULTIBYTE (object))