diff options
Diffstat (limited to 'src/data.c')
| -rw-r--r-- | src/data.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/data.c b/src/data.c index fe7b9420344..faa87d0013f 100644 --- a/src/data.c +++ b/src/data.c | |||
| @@ -1463,8 +1463,7 @@ union Lisp_Val_Fwd | |||
| 1463 | static struct Lisp_Buffer_Local_Value * | 1463 | static struct Lisp_Buffer_Local_Value * |
| 1464 | make_blv (struct Lisp_Symbol *sym, int forwarded, union Lisp_Val_Fwd valcontents) | 1464 | make_blv (struct Lisp_Symbol *sym, int forwarded, union Lisp_Val_Fwd valcontents) |
| 1465 | { | 1465 | { |
| 1466 | struct Lisp_Buffer_Local_Value *blv | 1466 | struct Lisp_Buffer_Local_Value *blv = xmalloc (sizeof *blv); |
| 1467 | = xmalloc (sizeof (struct Lisp_Buffer_Local_Value)); | ||
| 1468 | Lisp_Object symbol; | 1467 | Lisp_Object symbol; |
| 1469 | Lisp_Object tem; | 1468 | Lisp_Object tem; |
| 1470 | 1469 | ||