aboutsummaryrefslogtreecommitdiffstats
path: root/src/alloc.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/alloc.c')
-rw-r--r--src/alloc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/alloc.c b/src/alloc.c
index 97c4c45733d..bb148b37ba3 100644
--- a/src/alloc.c
+++ b/src/alloc.c
@@ -4832,7 +4832,7 @@ make_pure_c_string (const char *data)
4832 s = (struct Lisp_String *) pure_alloc (sizeof *s, Lisp_String); 4832 s = (struct Lisp_String *) pure_alloc (sizeof *s, Lisp_String);
4833 s->size = nchars; 4833 s->size = nchars;
4834 s->size_byte = -1; 4834 s->size_byte = -1;
4835 s->data = data; 4835 s->data = (unsigned char *) data;
4836 s->intervals = NULL_INTERVAL; 4836 s->intervals = NULL_INTERVAL;
4837 XSETSTRING (string, s); 4837 XSETSTRING (string, s);
4838 return string; 4838 return string;