diff options
Diffstat (limited to 'src/alloc.c')
-rw-r--r-- | src/alloc.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/alloc.c b/src/alloc.c index d5c9f307cbc..67d34d25642 100644 --- a/src/alloc.c +++ b/src/alloc.c @@ -4756,7 +4756,7 @@ Does not copy symbols. Copies strings without text properties. */) else if (FLOATP (obj)) obj = make_pure_float (XFLOAT_DATA (obj)); else if (STRINGP (obj)) - obj = make_pure_string (SDATA (obj), SCHARS (obj), + obj = make_pure_string (SSDATA (obj), SCHARS (obj), SBYTES (obj), STRING_MULTIBYTE (obj)); else if (COMPILEDP (obj) || VECTORP (obj)) @@ -6276,4 +6276,3 @@ The time is in seconds as a floating point value. */); defsubr (&Sgc_status); #endif } - |